  
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
  --background-color: #ffffff; /* Cor de fundo para todo o site, incluindo seções individuais */
  --default-color: #212529; /* Cor padrão usada para a maioria do conteúdo textual em todo o site */
  --heading-color: #32353a; /* Cor para títulos, subtítulos e cabeçalhos em todo o site */
  --accent-color: #5d57f4; /* Cor de destaque que representa sua marca no site. Usada em botões, links e outros elementos que precisam se destacar */
  --surface-color: #ffffff; /* A cor de superfície é usada como fundo de elementos em caixa dentro das seções, como cards, caixas de ícones ou outros elementos que requerem separação visual do fundo global */
  --contrast-color: #ffffff; /* Cor de contraste para texto, garantindo legibilidade sobre fundos das cores de destaque, cabeçalho ou padrão */
  --nav-color: #3a3939;  /* Cor padrão dos links do menu de navegação principal */
  --nav-hover-color: #5d57f4; /* Aplicada aos links do menu principal quando passam o mouse ou estão ativos */
  --nav-mobile-background-color: #ffffff; /* Usada como cor de fundo para o menu de navegação mobile */
  --nav-dropdown-background-color: #ffffff; /* Usada como cor de fundo para itens dropdown que aparecem ao passar o mouse sobre itens de navegação primários */
  --nav-dropdown-color: #3a3939; /* Usada para links de navegação dos itens dropdown no menu */
  --nav-dropdown-hover-color: #5d57f4; /* Similar à --nav-hover-color, esta cor é aplicada aos links dropdown quando passam o mouse */
}

.light-background {
  --background-color: #f4f4f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

.main {
    padding-top: 0; 
    margin-top: 0;
    flex: 1 0 auto; 

}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(93, 87, 244, 0.6);
  border-radius: 8px;
}



body > *:last-child:not(.footer) {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 28px;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 28px;
  font-weight: 700;
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.9);
}

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  margin-bottom: -30px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;

}


.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
  
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  background: rgba(93, 87, 244, 0.2);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;

}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;

}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
  
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;

}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

}

.footer .copyright p {
  margin-bottom: 0;

}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;

}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
  
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 6% 0 30px;
  scroll-margin-top: 98px;
  overflow: clip;
}

.section-title {
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

.hero {
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding-bottom: 35px;
}

.hero .badge-wrapper .d-inline-flex {
  padding: 0.5rem 0.75rem;
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .badge-wrapper .d-inline-flex .icon-circle {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .badge-wrapper .d-inline-flex .icon-circle i {
  font-size: 0.875rem;
  color: var(--heading-color);
}

.hero .badge-wrapper .d-inline-flex .badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
}

.hero .hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}



.hero .hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.hero .cta-wrapper .btn-primary {
  padding: 0.75rem 1.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .cta-wrapper .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-image {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.hero .hero-image:hover {
  transform: translateY(-5px);
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.hero .feature-boxes {
  margin-top: -1rem;
}

.hero .feature-boxes .feature-box {
  padding: 1.6rem;
  border-radius: 14px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.hero .feature-boxes .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(93, 87, 244, 0.15);
}

.hero .feature-boxes .feature-box .feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #667eea));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}

.hero .feature-boxes .feature-box .feature-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.hero .feature-boxes .feature-box .feature-content {
  flex: 1;
}

.hero .feature-boxes .feature-box .feature-content .feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.hero .feature-boxes .feature-box .feature-content .feature-text {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.hero .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  border: none;
  margin-top: 15px;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 9px 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.hero .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.hero .content .read-more:hover i {
  margin-left: 10px;
}

.how-we-work .process-container {
  max-width: 800px;
  margin: 0 auto;
}



.how-we-work .process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 2.5rem;

}

.how-we-work .process-item:last-child {
  padding-bottom: 0;
}

.how-we-work .process-item .content {
  width: 100%;
  position: relative;
background: linear-gradient(
  145deg,
  var(--surface-color), transparent 0%
);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.how-we-work .process-item .content:hover {
  transform: translateX(10px);
  box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
}

.how-we-work .process-item .content:hover .step-icon {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), var(--accent-color));
  transform: rotate(10deg);
}

.how-we-work .process-item .content:hover .step-number {
  transform: translateX(-5px);
  opacity: 1;
}

.how-we-work .process-item .step-number {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1;
  opacity: 0.2;
  transition: transform 0.3s ease, opacity 0.3s ease;
  
}

.how-we-work .process-item .card-body {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  
}

.how-we-work .process-item .step-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.how-we-work .process-item .step-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.how-we-work .process-item .step-content h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.how-we-work .process-item .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.how-we-work .process-item .arrow {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  margin: 1rem 0;
  width: 100px;
  height: 100px;
  opacity: 0.7;
}

.services .service-item {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
}

.services .service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.services .service-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.services .service-item:hover::before {
  transform: scaleY(1);
}

.services .service-item:hover .service-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotateY(180deg);
}

.services .service-item:hover .service-icon i {
  transform: rotateY(180deg);
}

.services .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services .service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  transition: all 0.5s ease;
}

.services .service-icon i {
  font-size: 2rem;
  transition: transform 0.5s ease;
}

.services .service-content {
  flex-grow: 1;
}

.services .service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.services .service-content p {
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .service-link span {
  margin-right: 0.5rem;
}

.services .service-link i {
  transition: transform 0.3s ease;
}

.services .service-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}



.services-alt .content-block .button-wrapper .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.services-alt .content-block .button-wrapper .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
}



.services-alt .services-list .service-item {
  position: relative;
  padding: 2.5rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.services-alt .services-list .service-item:first-child {
  padding-top: 0;
}

.services-alt .services-list .service-item:hover .service-icon {
  background-color: var(--accent-color);
}

.services-alt .services-list .service-item:hover .service-icon i {
  color: var(--contrast-color);
}

.services-alt .services-list .service-item:hover .service-content h4 a {
  color: var(--accent-color);
}

.services-alt .services-list .service-icon {
  height: 5rem;
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.services-alt .services-list .service-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services-alt .services-list .service-content {
  position: relative;
  width: 100%;
}

.services-alt .services-list .service-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.services-alt .services-list .service-content h4 a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.services-alt .services-list .service-content h4 a:hover {
  color: var(--accent-color);
}

.services-alt .services-list .service-content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.portfolio .portfolio-filters-container {
  margin-bottom: 40px;
}

.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  color: var(--default-color);
  transition: all 0.3s ease-in-out;
  
}

.portfolio .portfolio-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.portfolio .portfolio-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.portfolio .portfolio-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
    

}

.portfolio .portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}



.portfolio .portfolio-card .portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  
}

.portfolio .portfolio-card .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
}

.portfolio .portfolio-card .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  opacity: 1; 
  visibility: visible;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}


.portfolio .portfolio-card .portfolio-content {
  padding: 25px;
}

.portfolio-content .github-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--default-color);
  color: var(--contrast-color);
  margin-top: 8px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.portfolio-content .github-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}


.portfolio .portfolio-card .portfolio-content .category {
  font-size: 14px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.portfolio .portfolio-card .portfolio-content h3 {
    font-size: 22px;
    margin: 0 0 20px;
    font-weight: 700;
    color: var(--heading-color);
    transition: color 0.3s ease;
    background: linear-gradient(135deg, var(--heading-color) 0%,
 color-mix(in srgb, var(--heading-color), transparent 30%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio .portfolio-card .portfolio-content h3:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-card .portfolio-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6;
}

.portfolio-scroll-container {
  max-height: 80vh;
  min-height: 300px;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden; 
  padding-right: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
  position: relative;

  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none; 
}

.portfolio-scroll-container::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.portfolio-scroll-container::-webkit-scrollbar-track,
.portfolio-scroll-container::-webkit-scrollbar-thumb {
  background: transparent;
  border: none;
  box-shadow: none;
}

.portfolio-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.portfolio-scroll-container::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 4px;
  border: none;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}

.custom-box {
  display: flex;
  justify-content: end;
  width: 75%;
  margin-left: 23%;
}

.testimonials .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-card {
    background: linear-gradient(145deg,
 color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
    border: 2px solid
   color-mix(in srgb, var(--accent-color), transparent 85%);  border-radius: 15px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  display: flex;
  flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials .testimonial-card:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-content {
  padding: 20px 15px 15px ;
  position: relative;
  flex-grow: 1;
}

.testimonials .testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.testimonials .testimonial-content .quote-icon {
  position: absolute;
  top: 15px;
  left: 30px;
  font-size: 42px;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  z-index: 0;
  opacity: 0.8;
}

.testimonials .testimonial-profile {
  padding: 20px 30px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.testimonials .rating {
  margin-bottom: 15px;
}

.testimonials .rating i {
  color: #ffc107;
  margin-right: 3px;
  font-size: 14px;
}

.testimonials .profile-info {
  display: flex;
  align-items: center;
}

.testimonials .profile-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--background-color);
  margin-right: 15px;
}

.testimonials .profile-info div {
  flex: 1;
}

.testimonials .profile-info h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
}

.testimonials .profile-info h4 {
  margin: 0;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 25px;
  border-radius: 5px;
}

.contact .info-card {
padding: 1.6rem;
    border-radius: 14px;
    background: linear-gradient(145deg,
 color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
    border: 2px solid
 color-mix(in srgb, var(--accent-color), transparent 85%);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact .info-card:hover {
    transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(93, 87, 244, 0.15);
}

.contact .info-card .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #667eea));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}

.contact .info-card .icon-box i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.contact .info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.contact .info-card p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.contact .form-wrapper .input-group .input-group-text {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
}

.contact .form-wrapper .input-group .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 12px 15px;
}

.contact .form-wrapper .input-group .form-control:focus {
  border-color: var(--accent-color);
}

.contact .form-wrapper .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .form-wrapper select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 40px;
}

.contact .form-wrapper textarea.form-control {
  min-height: 160px;
}

.contact .form-wrapper button {
  background-color: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  color: var(--contrast-color);
  border-radius: 8px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}

.contact .form-wrapper button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}


.service-details .service-main-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-main-image img {
  width: 100%;
  transition: transform 0.6s;
}

.service-details .service-main-image:hover img {
  transform: scale(1.05);
}

.service-details .service-main-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 12px;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  
}

.service-details .service-main-image .experience-badge span {
  font-size: 36px;
  font-weight: 700;
  display: block;
  line-height: 1;
  
}

.service-details .service-main-image .experience-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
  

}

.service-details .service-main-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-details .service-main-content .section-header {
  margin-bottom: 25px;
}

.service-details .service-main-content .section-header .section-subtitle {
  display: inline-block;
  
  padding: 8px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-details .service-main-content .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
}


.service-details .service-main-content .lead {
  font-size: 18px;
  margin-bottom: 20px;
}

.service-details .service-main-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
}

.service-details .service-benefits {
  padding: 0;
  list-style: none;
  margin: 20px 0 0 0;
}

.service-details .service-benefits li {
  padding: 12px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.service-details .service-benefits li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 15px;
}

.service-details .service-tabs .nav-tabs {
  border: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.container {
  max-width: 1250px; 
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  position: relative;
}

.team-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 20px;
}


.team-overlay h1{
    color: var(--contrast-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
    line-height: 1.5;
}

.team-image:hover .team-overlay {
  opacity: 1;
}

#services-alt .container > .row {
  display: flex;
  justify-content: center;
}

.team-social i {
  font-size: 1.6rem; 
  color: var(--contrast-color);
  margin: 0 1rem;
  justify-content: center;
}

.team-social{
  text-align: center;
}

.team-social i:hover {
  color: #ffffffcb;
}

.service-details .service-tabs .nav-tabs .nav-link {
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  color: var(--default-color);
  font-weight: 600;
  background: var(--surface-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
  margin-right: 10px;
  font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.service-details .service-tabs .tab-content {
  padding: 25px;
  border-radius: 16px;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-tabs .tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .service-tabs .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.service-details .service-tabs .tab-content .feature-item {
  padding: 15px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--background-color), transparent 5%), color-mix(in srgb, var(--surface-color), transparent 5%));
  border-radius: 15px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-details .service-tabs .tab-content .feature-item:hover {
  transform: translateY(-10px);
}

.service-details .service-tabs .tab-content .feature-item i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 20px;
}

.service-details .service-tabs .tab-content .feature-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
  color: var(--heading-color);
}

.service-details .service-tabs .tab-content .feature-item p {
  font-size: 15px;
  margin-bottom: 0;
}

.service-details .service-testimonial {
  margin-top: 80px;
}

.service-details .service-testimonial .testimonial-card {
  padding: 40px;
  border-radius: 16px;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-testimonial .testimonial-card .client-info {
  text-align: center;
}

.service-details .service-testimonial .testimonial-card .client-info img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 5px solid var(--background-color);
  margin-right: 20px;
}


.service-details .service-testimonial .testimonial-card .client-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details .service-testimonial .testimonial-card .client-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 10px;
  font-size: 14px;
}

.service-details .service-testimonial .testimonial-card .client-info .stars {
  color: #FFD700;
  font-size: 14px;
}

.service-details .service-testimonial .testimonial-card .quote {
  position: relative;
  padding-left: 30px;
}

.service-details .service-testimonial .testimonial-card .quote i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-testimonial .testimonial-card .quote p {
  font-style: italic;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-cta {
  margin-top: 80px;
  padding: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), color-mix(in srgb, var(--accent-color), transparent 40%));
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .service-cta h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.service-details .service-cta p {
  font-size: 18px;
  color: var(--contrast-color);
  opacity: 0.9;
  margin-bottom: 30px;
}

.service-details .service-cta .btn-service {
  display: inline-flex;
  align-items: center;
  background: var(--contrast-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  transition: all 0.3s;
}

.service-details .service-cta .btn-service i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.service-details .service-cta .btn-service:hover {
  background: var(--background-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-cta .btn-service:hover i {
  transform: translateX(5px);
}


.softskills ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.softskills li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 17px;
  color: var(--heading-color);
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface-color), transparent 5%), var(--surface-color));
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.softskills li:hover {
  transform: translateX(10px);
}

.softskills li span {
  display: inline-block;
  flex: 1;
}

.softskills i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 20px;
}
#imageSkills{
  border-radius: 10px;
}


.dropdown-curriculo .read-more {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.dropdown-curriculo {
  position: relative;
  display: inline-block;
}


.dropdown-curriculo .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-curriculo .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-curriculo .dropdown-menu {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 200px;
}

.dropdown-curriculo .dropdown-item {
  padding: 10px 16px;
  color: var(--default-color);
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.dropdown-curriculo .dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.dropdown-curriculo .dropdown-item i {
  color: var(--accent-color);
  font-size: 16px;
}

.hero-social {
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(93, 87, 244, 0.1);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(93, 87, 244, 0.2);
  transform: translateY(-3px);
  color: var(--accent-color);
}

.btn-translate {
  background: rgba(93, 87, 244, 0.1);
  border: 1px solid rgba(93, 87, 244, 0.3);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-translate:hover {
  background: rgba(93, 87, 244, 0.2);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.btn-translate i {
  font-size: 16px;
}

.navmenu ul li:last-child {
  margin-left: 10px;
}

.stack-indicator {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.stack-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.stack-badge.fullstack {
        background: linear-gradient(135deg, #667eea94 0%, #764ba294 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.stack-badge.frontend-only {
  background: linear-gradient(135deg, #f093fb94 0%, #f5576c94 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(240, 147, 251, 0.3);
}

.stack-badge.backend-only {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(79, 172, 254, 0.3);
}

.stack-badge.angular-badge {
  background: linear-gradient(135deg, #dd0031 0%, #c3002f 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(221, 0, 49, 0.3);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 12px;
}

.tech-tags .tag {
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.tag.angular-tag {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.tag.java-tag {
  background-color: #fff3e0;
  color: #ef6c00;
  border: 1px solid #ffe0b2;
}

.tag.typescript-tag {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.tag.html-tag {
  background-color: #fff3e0;
  color: #e65100;
  border: 1px solid #ffe0b2;
}

.tag.css-tag {
  background-color: #e3f2fd;
  color: #0277bd;
  border: 1px solid #bbdefb;
}

.tag.js-tag {
  background-color: #fffde7;
  color: #f9a825;
  border: 1px solid #fff9c4;
}

.tag.mysql-tag {
  background-color: #f3e5f5;
  color: #5d4037;
  border: 1px solid #e1bee7;
}

.tag.php-tag {
  background-color: #f3e5f5;
  color: #777bb3;
  border: 1px solid #e1bee7;
}

.tag.docker-tag {
  background-color: #e3f2fd;
  color: #2496ed;
  border: 1px solid #bbdefb;
}

.tag.api-tag {
  background-color: #fff3e0;
  color: #ff9800;
  border: 1px solid #ffe0b2;
}

.tag.canvas-tag {
  background-color: #e8f5e9;
  color: #4caf50;
  border: 1px solid #c8e6c9;
}


.tag.chart-tag {
  background-color: #fff3e0;
  color: #ff9800;
  border: 1px solid #ffe0b2;
}

.tag.date-tag {
  background-color: #f3e5f5;
  color: #7b1fa2;
  border: 1px solid #e1bee7;
}

.tag.audio-tag {
  background-color: #e3f2fd;
  color: #0277bd;
  border: 1px solid #bbdefb;
}


.tag.auth-tag {
  background-color: #ffebee;
  color: #d32f2f;
  border: 1px solid #ffcdd2;
}

.portfolio .portfolio-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 8px 0 0;
  line-height: 1.5;
}

.portfolio .portfolio-card .portfolio-overlay {
  z-index: 1;
}

.tech-tags .tag:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}



.portfolio .portfolio-filters {
  gap: 10px;
  flex-wrap: wrap;
}

.portfolio .portfolio-filters li {
  padding: 10px 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.portfolio .portfolio-filters li:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.portfolio .portfolio-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.portfolio .portfolio-content > p:first-of-type {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 2px solid
 color-mix(in srgb, var(--accent-color), transparent 20%);
}


.portfolio .portfolio-card .portfolio-overlay .portfolio-actions {
  transform: translateY(0);
  transition: all 0.4s ease-in-out;
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
background: rgb(255 255 255 / 90%);
  backdrop-filter: blur(10px);
  color: var(--default-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a.github-link:hover {
  background: #24292e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(36, 41, 46, 0.3);
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a.details-link:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a.preview-link:hover {
  background: #4CAF50;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}


.hero-highlight {
  background: 
  linear-gradient(135deg, 
      color-mix(in srgb, var(--accent-color), transparent 95%) 0%, 
      color-mix(in srgb, var(--accent-color), transparent 98%) 100%),
  url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%235d57f4' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 
    0 5px 25px rgba(93, 87, 244, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-highlight::before,
.hero-highlight::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  filter: blur(40px);
  animation: floatOrbs 25s infinite linear;
}

.hero-highlight::before {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  background: radial-gradient(
    circle, 
    color-mix(in srgb, var(--accent-color), transparent 15%) 0%,
    transparent 70%
  );
  animation-delay: 0s;
  opacity: 0.4;
}

.hero-highlight::after {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(
    circle, 
    color-mix(in srgb, #667eea, transparent 20%) 0%,
    transparent 70%
  );
  animation-delay: -12.5s;
  opacity: 0.3;
}

.hero-highlight > * {
  margin-bottom: 0 !important;
  position: relative;
  z-index: 2;
}

.hero-highlight .badge-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  display: inline-block;
}

.hero-highlight .badge-wrapper .d-inline-flex {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(93, 87, 244, 0.1);

}

.hero-highlight .badge-wrapper .d-inline-flex::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s;
}

.hero-highlight .badge-wrapper:hover .d-inline-flex::before {
  left: 100%;
}

.hero-highlight .badge-wrapper:hover .d-inline-flex {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(93, 87, 244, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-highlight .hero-title {
  font-size: 2.6rem;
  background: linear-gradient(
    135deg,
    var(--heading-color) 0%,
    color-mix(in srgb, var(--heading-color), transparent 20%) 50%,
    var(--heading-color) 100%
  );  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}


.hero-highlight .hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 2.5rem;
  position: relative;
  animation: paragraphReveal 1s 0.5s both;
}

.hero-highlight .hero-description p {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.hero-highlight .hero-description p:nth-child(1) { animation-delay: 0.7s; }
.hero-highlight .hero-description p:nth-child(2) { animation-delay: 0.9s; }
.hero-highlight .hero-description p:nth-child(3) { animation-delay: 1.1s; }

.hero-highlight .hero-description strong {
  color: var(--accent-color);
  font-weight: 700;
  position: relative;
  padding: 0 2px;
}

.hero-highlight .translate-and-download {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  animation: controlsReveal 1s 0.8s both;
}


@keyframes floatOrbs {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -20px) rotate(90deg);
  }
  50% {
    transform: translate(0, -40px) rotate(180deg);
  }
  75% {
    transform: translate(-30px, -20px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) skewY(2deg);
    letter-spacing: -0.5em;
  }
  100% {
    opacity: 1;
    transform: translateY(0) skewY(0);
    letter-spacing: normal;
  }
}

@keyframes paragraphReveal {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes controlsReveal {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  animation: photoReveal 1s 0.4s both;
}

.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(93, 87, 244, 0.1) 50%,
    transparent 60%
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s;
}

.team-card:hover::before {
  opacity: 1;
  animation: shine 1.5s;
}

.team-card .team-image {
  position: relative;
  overflow: hidden;
}

.team-card .team-image img {
  width: 100%;
  height: auto;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-card .team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    color-mix(in srgb, var(--accent-color), transparent 20%) 0%,
    color-mix(in srgb, #667eea, transparent 30%) 100%
  );
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px);
}

.team-card:hover .team-overlay {
  opacity: 1;
  transform: translateY(0);
}

.team-card .team-overlay h1 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.6s;
}

.team-card:hover .team-overlay h1 {
  transform: scale(1);
}

@keyframes photoReveal {
  from {
    opacity: 0;
    transform: translateX(30px) rotateY(-10deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0);
  }
}

@keyframes shine {
  0% { background-position: -100% 50%; }
  100% { background-position: 200% 50%; }
}

.how-we-work {
  position: relative;
  background-color: var(--background-color);
  overflow: hidden;
  padding: 4% 0 30px;
}

.how-we-work::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 300' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cpath id='wavePattern' fill='%235d57f4' fill-opacity='0.6' d='M0,150 Q250,100 500,150 T1000,150 L1000,300 L0,300 Z'/%3E%3C/defs%3E%3Cuse href='%23wavePattern' x='0'/%3E%3Cuse href='%23wavePattern' x='1000'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 1000px 100%;
  z-index: 0;
  opacity: 0.8;
  animation: seamlessWave 25s linear infinite;
}

.how-we-work::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 300' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cpath id='wavePattern2' fill='%235d57f4' fill-opacity='0.25' d='M0,180 Q125,130 250,180 Q375,230 500,180 Q625,130 750,180 Q875,230 1000,180 L1000,300 L0,300 Z'/%3E%3C/defs%3E%3Cuse href='%23wavePattern2' x='0'/%3E%3Cuse href='%23wavePattern2' x='1000'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 1000px 100%;
  z-index: -1;
  opacity: 0.8;
  animation: seamlessWaveReverse 25s linear infinite;
}

@keyframes seamlessWave {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: 1000px bottom;
  }
}

@keyframes seamlessWaveReverse {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: -1000px bottom;
  }
}

.how-we-work .container,
.how-we-work .section-title {
  position: relative;
  z-index: 1;
}
