:root {
  /* DARK MODE (default) */
  --bg-color: #0b0f1a;
  --text-color: #ffffff;
  --accent-color: #c084fc;
  --card-bg: #121826;
  --card-text: #ddd;
  --footer-bg: #0b0622;
  --hero-overlay: rgba(11, 6, 34, 0.9);
  --modal-bg: rgba(255, 255, 255, 0.15);
  --modal-blur: blur(20px);
  --modal-border: rgba(192, 132, 252, 0.2);
  --modal-text: #ffffff;
  --modal-shadow: rgba(192, 132, 252, 0.3);
  --accent: #a855f7;
  --badge-bg: #6b21a8;
  --light-bg: #ffffff;
  --light-text: #1a1a1a;
  --light-card: #f8f8f8;
  --photo-border-color: rgba(255, 255, 255, 0.15);
  --social-icon-color: white;
  --social-icon-hover: #c084fc;
}

.light-mode {
  --bg-color: #ffffff;
  --text-color: #1a1a1a;
  --accent-color: #7c3aed;
  --card-bg: #f4f4f4;
  --card-text: #333;
  --footer-bg: #f7f7f7;
  --hero-overlay: rgba(255, 255, 255, 0.6);
  --modal-bg: rgba(255, 255, 255, 0.35);
  --modal-text: #1a1a1a;
  --modal-border: rgba(124, 58, 237, 0.25);
  --modal-shadow: rgba(124, 58, 237, 0.2);
  --accent: #9333ea;
  --badge-bg: #ede9fe;
  --photo-border-color: rgba(0, 0, 0, 0.15);
  --social-icon-color: #333;
  --social-icon-hover: #7c3aed;

  /* Gradiente leve animado */
  --gradient-light-1: #f3e8ff;
  --gradient-light-2: #e9d5ff;
  --gradient-light-3: #d8b4fe;
}

body {
  overflow-x: hidden;
}


body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

/* Exemplo de botão com modo adaptável */
.btn-outline {
  border: 1px solid var(--text-color);
  color: var(--text-color);
}



body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(120deg, var(--gradient-color-1), var(--gradient-color-2), var(--gradient-color-3));
  background-size: 400% 400%;
  animation: moveBackground 20s ease infinite;
  opacity: 0.3;
}


.btn-outline {
  border: 1px solid white;
  padding: 8px 16px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-outline:hover {
  background: white;
  color: #0b0622;
}


.hero {
  background: linear-gradient(var(--hero-overlay), var(--hero-overlay)), url('../imagens/K.gif') center/cover;
  background-blend-mode: overlay;
  background-size: 400% 400%, cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


body.light-mode .hero {
  background-image: linear-gradient(var(--hero-overlay), var(--hero-overlay)), 
                    url('../imagens/KK.gif');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 400% 400%, cover;
  background-blend-mode: overlay;
  animation: moveGradientLight 20s ease infinite;
  color: #1a1a1a;
}



.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero h1 span {
  color: #c084fc;
}

.hero p {
  margin-top: 10px;
  font-size: 16px;
  
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #c084fc;
  padding: 12px 24px;
  border-radius: 6px;
  color: #0b0622;
  font-weight: bold;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.brands {
  text-align: center;
  padding: 60px 20px;
}

.brands p {
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 30px;
  
}

.brand-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.brand-logos img {
  max-height: 40px;
  opacity: 0.8;
  transition: transform 0.3s;
}

.brand-logos img:hover {
  transform: scale(1.1);
}

/* Overlay */
/* Overlay escurecido */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-overlay.hidden {
  display: none;
}

/* Conteúdo do Modal com efeito de vidro */
.modal-content.glass-modal {
  background: #c084fcbf;
  backdrop-filter: var(--modal-blur);
  color: var(--modal-text);
  padding: 0px 35px;
  border-radius: 15px;
  width: 45%;
  max-width: 430px;
  box-shadow: 0 20px 50px var(--modal-shadow);
  border: 1px solid var(--modal-border);
  position: relative;
  text-align: center;
  margin: 55px auto -95px auto; /* centraliza e desce mais */
}

/* Fechar modal */
.close-modal {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 28px;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

/* Campos */
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 14px 5px;
  margin: 12px 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  font-size: 15px;
  outline: none;
}

.modal-content input::placeholder,
.modal-content textarea::placeholder {
  color: #ccc;
}

/* Botão enviar */
.btn-submit {
  background: linear-gradient(90deg, #9333ea, #a855f7);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  transform: scale(1.05);
}

/* Texto em gradiente */
.gradient-text {
  background: linear-gradient(to right, #9333ea, #1b123b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



/* === HEADER GERAL === */
header {
  position: fixed;
  top: 0;
  width: 90%;
  padding: 0px 6%;
  background: rgba(11, 6, 34, 0.6);
  backdrop-filter: blur(12px);
  z-index: 999;
}

/* === NAVBAR COM 3 COLUNAS (LOGO | MENU | BOTÃO) === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* === LOGO (ESQUERDA) === */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 18px;
  color: white;
}

.logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.logo-light {
  display: none;
}
.logo-dark {
  display: block;
}

/* Quando estiver em modo claro, mostra a logo clara */
.light-mode .logo-light {
  display: block;
}
.light-mode .logo-dark {
  display: none;
}





/* Quando estiver em modo escuro */
.dark-mode .logo-light {
  display: none;
}
.dark-mode .logo-dark {
  display: block;
}

/* === MENU CENTRAL === */
.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links ul {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #c084fc;
}

/* === BOTÃO "LET’S CONNECT" (DIREITA) === */
.btn-outline {
  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 4px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
  background: white;
  color: #0b0622;
}

/* === HAMBURGUER (aparece só no mobile) === */
.hamburger {
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: #c084fc;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}


/* === MENU MOBILE === */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #16083b;
  border-top: 1px solid #302060;
  margin-top: 10px;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  border-bottom: 1px solid #2a1d4d;
}

.mobile-menu a {
  color: white;
  padding: 16px 12px;
  display: block;
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu a:hover {
  background-color: #291a48;
}

/* === RESPONSIVO === */
@media (max-width: 1024px) {
  .nav-links,
  .btn-outline {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .mobile-menu.active {
    display: flex;
  }
}

@media (min-width: 1025px) {
  .mobile-menu,
  .hamburger {
    display: none !important;
  }

  .nav-links {
    display: flex;
  }

  .btn-outline {
    display: inline-block;
  }
}
#theme-toggle {
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--modal-border);
  background: var(--modal-bg);
  color: var(--text-color);
  backdrop-filter: var(--modal-blur);
  box-shadow: 0 4px 16px var(--modal-shadow);

  transition: all 0.3s ease;
}

#theme-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px var(--modal-shadow);
}


.language-dropdown {
  position: fixed;
  top: 1px;
  right: 200px;
  z-index: 1000;
}

.lang-toggle {
  background-color: var(--bg-secondary, #2d1e5f);
  color: var(--text-color, #fff);
  padding: 6px 10px;
  border: 0px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  min-width: 48px;
  text-align: center;
  transition: all 0.2s ease;
}

.lang-toggle:hover {
  background-color: var(--accent-color, #4f46e5);
  color: #fff;
}

/* REMOVE OS PONTOS DA LISTA */
.lang-options {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background-color: var(--bg-secondary, #2d1e5f);
  border-radius: 6px;
  min-width: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: bounceIn 0.3s ease;
  z-index: 999;
}

.lang-options li a {
  display: block;
  padding: 6px 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s;
}

.lang-options li a:hover {
  background-color: var(--accent-color, #4f46e5);
}

@keyframes bounceIn {
  0%   { transform: translateY(-10%); opacity: 0; }
  60%  { transform: translateY(10%); opacity: 1; }
  100% { transform: translateY(0); }
}



/* Dark mode compatibility */
body.dark-mode .language-switch {
  background: rgba(0, 0, 0, 0.3);
}









/* === SEÇÃO ABOUT === */
.about-section {
  padding: 100px 6%;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

/* === BLOCO DA IMAGEM COM ÍCONES === */
.about-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-box {
border: 1px solid var(--photo-border-color);
  padding: 16px;
  border-radius: 4px;
  text-align: center;
}

.about-photo {
  width: 250px;
  height: auto;
  border-radius: 4px;
  display: block;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* === ÍCONES SOCIAIS ABAIXO DA FOTO === */
.social-icons {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: var(--social-icon-color);
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--social-icon-hover);
}

/* === BLOCO DE TEXTO === */
.about-right {
  max-width: 600px;
}

.about-right h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
  
}

.about-right p {
  font-size: 15px;
  line-height: 1.7;
  
}

/* === RESPONSIVO === */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-right {
    margin-top: 40px;
  }
}


/* === SECTION BASE === */
.services-section {
  padding: 20px 15%;
background: var(--bg-color);
color: var(--text-color);

}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* === CAIXA DE SERVIÇO === */
.service-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* === INVERTE IMAGEM E TEXTO QUANDO QUISER === */
.service-box.reverse {
  flex-direction: row-reverse;
}

/* === BLOCO DE TEXTO === */
.service-text {
  flex: 1;
  min-width: 300px;
}

.service-number {
  color: #9f7aea;
  font-weight: bold;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.service-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-text p {
  
  line-height: 1.6;
  margin-bottom: 20px;
}

/* === LISTA COM ÍCONES === */
.service-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-text li {
  margin-bottom: 10px;
  
}

.service-text li i {
  color: #c084fc;
  margin-right: 10px;
}

/* === IMAGEM === */
.service-image {
  flex: 1;
  min-width: 280px;
}

.service-image img {
  width: 100%;
  border-radius: 4px;
}

/* === LINHA DIVISÓRIA === */
.divider {
  border: 0;
  height: 1px;
  background: #2d2152;
  margin: 60px 0;
}

/* === RESPONSIVO === */
@media (max-width: 768px) {
  .service-box,
  .service-box.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-image {
    margin-top: 20px;
  }

  .service-text ul {
    text-align: left;
  }
}


/* === FEATURED WORK SECTION === */
.featured-work {
  padding: 20px 15%;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
}

/* Projeto destaque */
.featured-project {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #3a2d6d;
  padding: 40px;
  gap: 40px;
  margin-bottom: 60px;
}

.featured-project .project-image {
  flex: 1 1 250px;
}

.featured-project .project-image img {
  width: 100%;
  border-radius: 6px;
}

.featured-project .project-content {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-type {
  font-size: 12px;
  color: #b8a5ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.project-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  
}

.project-link {
  font-weight: 600;
  color: #c084fc;
  text-decoration: none;
}

.project-link span {
  margin-left: 4px;
}

/* Grid inferior de projetos */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: #16083b;
  border: 1px solid #3a2d6d;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: auto;
}

.project-card-info {
  padding: 20px;
}

.project-card-info .project-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 8px;
}

/* Responsivo */
@media (max-width: 768px) {
  .featured-project {
    flex-direction: column;
    padding: 20px;
  }
}

/* Tooltip flutuante fora do fluxo */
#floating-tooltip {
  position: absolute;
  background: #fff;
  color: #111;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9999;
  font-size: 0.95rem;
}

body.dark-mode #floating-tooltip {
  background: #1f2937;
  color: #f1f5f9;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}
#floating-tooltip video {
  width: 100%;
  max-height: 180px;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}



.project-image video {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  display: block;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}









/* === PROJECT CTA SECTION === */
.project-cta {
  padding: 80px 5% 100px;
  background-color: var(--bg-color);
  color: var(--text-color);
  text-align: center;
}

/* Botão roxo centralizado */
.cta-button-wrapper {
  margin-bottom: 50px;
}

.btn-purple {
  background: #a855f7;
  color: white;
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-purple:hover {
  background: #9333ea;
}

/* Estatísticas */
.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-item {
  min-width: 120px;
}

.stat-item h3 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.4;
}

/* Divisores verticais entre colunas */
.divider {
  width: 1px;
  height: 50px;
  background-color: #3f3f3f;
}

@media (max-width: 768px) {
  .stats {
    flex-direction: column;
  }

  .divider {
    display: none;
  }
}

/* === Testimonials Section === */
.testimonials-section {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 20px 15% 100px;
  text-align: center;
}

.testimonials-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* Grid dos Cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card Individual */
.testimonial-card {
  background-color: #1b123b;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  color: #FFD700; /* Amarelo dourado */
  font-size: 16px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  flex: 1;
}

/* Informações do usuário */
.testimonial-user {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-user img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user span {
  font-weight: 500;
  font-size: 15px;
  color: #fff;
}

/* Responsivo */
@media (max-width: 768px) {
  .testimonials-title {
    font-size: 26px;
  }

  .testimonial-card {
    padding: 25px 20px;
  }
}


/* === FOOTER === */
.main-footer {
  background-color: #0b0622;
  padding: 40px 6%;
  color: #ccc;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

/* Parte esquerda com texto e links */
.footer-left p {
  margin: 0;
}

.footer-links {
  margin-top: 8px;
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #c084fc;
}

/* Redes sociais */
.footer-socials a {
  margin-left: 16px;
  color: #aaa;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #c084fc;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-socials {
    margin-top: 12px;
  }
}
.footer-socials a[aria-label="Facebook"]:hover {
  color: #1877F2; /* azul do Facebook */
}




/* === About Carnaúba Section CSS === */
.about-carnauba-section {
  padding: 150px 6%;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.about-carnauba-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
}

.about-carnauba-left {
  flex: 1 1 480px;
  min-width: 300px;
}

.about-carnauba-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
}

.highlight {
  color: var(--accent-color);
}

.about-carnauba-block {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-carnauba-block h4 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

.about-carnauba-block p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--card-text);
}

.btn-see-jobs {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: transparent;
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.btn-see-jobs:hover {
  background-color: var(--accent-color);
  color: white;
}

/* Seção específica da Carnaúba */
.showcase-section.about-carnauba {
  padding: 80px 1%;
  background-color: var(--bg-color);
  color: var(--text-color);
}

/* Grid responsivo */
.about-carnauba .showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* Cartão com borda arredondada e sombra */
.about-carnauba .showcase-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Legenda do cartão */
.about-carnauba .showcase-caption {
  padding: 20px;
}

.about-carnauba .showcase-caption p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-color);
}

.about-carnauba .showcase-caption h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 8px;
}

/* Flip Card Efeito */
.about-carnauba .flip-card {
  perspective: 1000px;
  overflow: hidden;
}

.about-carnauba .flip-inner {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.about-carnauba .flip-card:hover .flip-inner,
.about-carnauba .flip-card:active .flip-inner {
  transform: rotateY(180deg);
}

.about-carnauba .flip-front,
.about-carnauba .flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.about-carnauba .flip-front img,
.about-carnauba .flip-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.about-carnauba .flip-back {
  transform: rotateY(180deg);
}

/* Animação Pulse */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.015); }
  100% { transform: scale(1); }
}

.about-carnauba .pulse {
  animation: pulse 4s ease-in-out infinite;
}












.services-section {
  padding: 100px 6%;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-intro {
  text-align: center;
  margin-bottom: 60px;
}

.services-title {
  font-size: 36px;
  font-weight: 700;
   margin-top: 120px;
}

.services-subtitle {
  font-size: 16px;
  color: var(--card-text);
  margin-top: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 1rem;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--card-text);
}

.light-mode .service-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.light-mode .services-subtitle,
.light-mode .service-card p {
  color: #555;
}




.showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}



.showcase-section {
  padding: 80px 1%;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.showcase-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.showcase-caption {
  padding: 20px;
}

.showcase-caption p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-color);
}

.showcase-caption h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 8px;
}

.cta-button {
  margin-top: 40px;
  text-align: center;
}

.btn-primarya {
  background: var(--accent-color);
  color: white;
  padding: 20px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  
}

.btn-primary:hover {
  background: #a855f7;
}

/* Efeito Flip + Pulse */
.flip-card {
  perspective: 1000px;
  overflow: hidden;
}

.flip-inner {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner,
.flip-card:active .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.flip-front img,
.flip-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.flip-back {
  transform: rotateY(180deg);
}

/* Pulse Animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.015); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 4s ease-in-out infinite;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
  display: none;
}

.modal-content {
  background: var(--card-bg);
  color: var(--text-color);
  border-radius: 16px;
  padding: 2rem;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.4s ease forwards;
}

.glass-modal {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-content p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #fff;
  color: #000;
  font-size: 0.95rem;
}

.modal-content textarea {
  resize: none;
}

.btn-submit {
  background: var(--accent-color);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

.btn-submit:hover {
  background: #a855f7;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}




.subscribe-section {
  text-align: center;
  padding: 10rem 2rem;
}

.subscribe-title {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-inline: auto;
  font-weight: 600;
}

.subscription-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.subscription-card {
  position: relative;
  width: 260px;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  color: white;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.subscription-card:hover {
  transform: translateY(-8px);
}

.subscription-card input {
  display: none;
}

.subscription-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.subscription-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.subscription-card li {
  margin-bottom: 0.5rem;
}

.subscription-card .price {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}

.subscription-card .price span {
  font-size: 1rem;
}

.subscription-card .price small {
  display: block;
  font-size: 0.75rem;
}

.buy-btn {
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 2rem;
  font-weight: bold;
  cursor: pointer;
}

.buy-btn:hover {
  background-color: #000;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: gold;
  color: black;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.savings {
  font-size: 0.75rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* Gradientes específicos para cada plano */
.subscription-card.solo {
  background: linear-gradient(to bottom, #00c9a7, #005b4f);
}

.subscription-card.pro {
  background: linear-gradient(to bottom, #7b5cff, #4d2c91);
}

.subscription-card.growth {
  background: linear-gradient(to bottom, #ff758c, #ff7eb3);
}

/* 🔥 Novo estilo para o plano "Projeto Único" */
.subscription-card.unique {
  background: linear-gradient(to bottom, #f9d423, #ff4e50); /* degrade dourado para vermelho */
  color: white;
}

/* Botão do modal de contato */
.modal-content button[type="submit"] {
  background-color: var(--accent-color, #222);
  color: white;
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.modal-content button[type="submit"]:hover {
  background-color: #000;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  background-color: #fff;
  color: #000;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal Base */
.modal {
  background-color: var(--bg-color, #fff);
  color: var(--text-color, #000);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Estilo do ícone */
.thankyou-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Botão do modal */
.modal-btn {
  margin-top: 2rem;
  background-color: var(--accent-color, #222);
  color: #fff;
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-btn:hover {
  background-color: #000;
}

/* Botão de fechar */
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text-color, #000);
  cursor: pointer;
}




















/* ========== CONTAINER ========== */
.terms-section {
  padding: 140px 5%;
  background-color: var(--bg-color);
  color: var(--text-color);
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.terms-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--text-color);
}

.terms-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.terms-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.terms-section ul li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.terms-section h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--text-color);
}

.terms-section a {
  color: var(--link-hover);
  text-decoration: underline;
}

.terms-section a:hover {
  text-decoration: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
  .terms-container h1 {
    font-size: 2rem;
  }

  .terms-container h2 {
    font-size: 1.2rem;
  }

  .terms-container {
    padding: 0 16px;
    margin: 60px auto;
  }
}


.privacy-section {
  padding: 140px 5%;
  background-color: var(--bg-color);
  color: var(--text-color);
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.privacy-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--text-color);
    margin-bottom: 30px;

}

.privacy-section .effective-date {
  text-align: center;
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 3rem;
}

.privacy-section section {
  margin-bottom: 2.5rem;
}

.privacy-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.privacy-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-section ul li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.privacy-section a {
  color: var(--link-hover);
  text-decoration: underline;
}

.privacy-section a:hover {
  text-decoration: none;
}

/* ======= marketing ========*/

.email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.email-form .form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.email-form input,
.email-form textarea {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--input-border, #ccc);
  border-radius: 8px;
  font-size: 1rem;
  background-color: var(--input-bg, #fff);
  color: var(--text-color);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: border-color 0.3s;
}

.email-form input:focus,
.email-form textarea:focus {
  border-color: var(--accent-color);
  outline: none;
}

.email-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-send {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(45deg, var(--accent-color), var(--accent-color-dark));
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s;
}

.btn-send:hover {
  background: linear-gradient(45deg, var(--accent-color-dark), var(--accent-color));
}


