@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* =========================================
   1. COMPONENTES GLOBAIS (BOTÕES)
   ========================================= */
.btn-base,
.btn-action,
.btn-action-2,
.trigger-btn,
.form-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-family-primary);
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  border: none;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn-base:hover,
.btn-action:hover,
.btn-action-2:hover,
.trigger-btn:hover,
.form-submit-btn:hover {
  transform: scale(1.02);
}

/* =========================================
   BUTTON STYLES (SEPARATED)
   ========================================= */

/* --- 1. BTN-ACTION (Dark Theme) ---
   BG: Dark
   Text: White
   Icon BG: White
   Arrow: Lime
*/
.btn-primary-dark,
.btn-action {
  background-color: var(--color-primary-dark);
  color: var(--color-text-white);
}

.btn-action .icon-bg {
  background-color: var(--color-bg-white);
}

.btn-action .arrow-svg {
  stroke: var(--color-primary-lime);
}

/* --- 2. BTN-ACTION-2 (Lime Theme) ---
   BG: Lime
   Text: White
   Icon BG: Dark
   Arrow: Dark
*/
.btn-primary-lime,
.btn-action-2,
.form-submit-btn {
  background-color: var(--color-primary-lime);
  color: var(--color-text-white);
}

.btn-action-2 .icon-bg-2,
.form-submit-btn .icon-bg-2 {
  background-color: var(--color-primary-dark);
}

.btn-action-2 .arrow-svg-2,
.form-submit-btn .arrow-svg-2 {
  stroke: var(--color-primary-dark);
}

/* --- 3. TRIGGER-BTN (Lime Theme - Separate) ---
   BG: Lime
   Text: White
   Icon BG: Dark
   Arrow: Dark
*/
.trigger-btn {
  background-color: var(--color-primary-lime);
  color: var(--color-text-white);
}

.trigger-btn .icon-bg {
  background-color: var(--color-primary-dark);
}

.trigger-btn .arrow-svg {
  stroke: var(--color-primary-dark);
}

/* Icon Container */
.icon-container {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Base Icon Container Styles */
.btn-base .icon-bg,
.btn-action .icon-bg,
.btn-action-2 .icon-bg-2,
.trigger-btn .icon-bg,
.form-submit-btn .icon-bg-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  z-index: 1;
}

/* Base SVG Styles */
.btn-base .arrow-svg,
.btn-action .arrow-svg,
.btn-action-2 .arrow-svg-2,
.trigger-btn .arrow-svg,
.form-submit-btn .arrow-svg-2 {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 20px;
  stroke: var(--color-primary-lime);
  /* Default fallback */
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* SVG Specific Overrides */
.btn-action-2 .arrow-svg-2,
.trigger-btn .arrow-svg,
.form-submit-btn .arrow-svg-2 {
  stroke: var(--color-primary-dark);
}

/* =========================================
   2. NAVBAR PRINCIPAL (DESKTOP)
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: var(--color-primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--spacing-gutter);
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(0);
}

/* Logo Desktop */

.logo-header {
  max-width: 270px;
}

.logo-header img {
  width: 80%;
  max-width: 80%;
}

.logo-header:hover {
  scale: 1.02;
  transition: all 0.1s ease-in;
  opacity: 0.95;
}

/* Navegação Direita */
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: opacity 0.3s;
}

.nav-link:hover {
  opacity: 0.85;
}

/* =========================================
   2. BOTÃO "ACESSE O CLUBE"
   ========================================= */
.club-login-block {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

.icon-circle {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-lime);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center;
}

.icon-svg {
  width: 24px;
  height: 24px;
  fill: var(--color-text-white);
}

.text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--color-text-light);
  line-height: 1.2;
}

.text-main {
  font-weight: 600;
  font-size: 16px;
  font-style: italic;
}

/* Underline animado */
.text-hover {
  position: relative;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.text-hover::after {
  content: '';
  background: white;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-in-out;
}

.text-hover:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.club-login-block:hover .text-hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* =========================================
   3. COMPONENTE: DOWNLOAD WRAPPER & QR CODE
   ========================================= */
.download-wrapper {
  position: relative;
  display: inline-block;
  padding-bottom: 25px;
  /* Ponte invisível para o mouse */
  margin-bottom: -25px;
}

/* Botão "Baixe o APP" (Usado na Navbar) */
.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #e0e0e0;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: var(--color-text-gray);
  font-weight: 600;
  font-size: 13px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.app-btn:hover {
  background-color: var(--color-bg-white);
  transform: scale(1.03);
}

.app-icons {
  display: flex;
  gap: 4px;
}

.app-icon-svg {
  width: 16px;
  height: 16px;
  fill: var(--color-text-gray);
}

/* Texto de gatilho (Usado no Footer Hero) */
.trigger-text {
  color: #1a4d45;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  transition: opacity 0.3s;
}

.trigger-text:hover {
  opacity: 0.8;
}

/* Card do QR Code */
.qr-card {
  position: absolute;
  /* Ajuste de posição padrão (Navbar - abre para baixo) */
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  padding: 16px;
  background: rgba(22, 81, 75, 0.55);
  /* Fundo mais sólido para leitura */
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  visibility: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1010;
}

/* Ajuste específico para quando está no Footer Hero (abre para cima) */
.hero-footer-row .qr-card {
  top: auto;
  bottom: 30px;
  margin-bottom: 25px;
}

.qr-display {
  position: relative;
  width: 100%;
  height: 190px;
  background: white;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.qr-img {
  position: absolute;
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.qr-android {
  opacity: 0;
}

.qr-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px;
  border-radius: 16px;
}

.btn-store {
  flex: 1;
  border: none;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-store svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  transition: fill 0.3s;
}

.btn-store.active {
  background: var(--color-bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-store.active svg {
  fill: #000000;
}


/* =========================================
   4. NAVBAR MOBILE & MENU
   ========================================= */
.navbar-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #1a4d45;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  box-sizing: border-box;
  z-index: 2005;
  display: none;
  /* Escondido por padrão no desktop */
}

/* Botão Hamburguer */
.menu-toggle {
  width: 45px;
  height: 25px;
  z-index: 2007;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #1a4d45;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 100px 20px 40px 20px;
  box-sizing: border-box;
  clip-path: circle(0px at calc(100% - 42px) 40px);
  pointer-events: none;
}

.menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-self: center;
  align-items: flex-start;
  gap: 32px;
  padding-top: 24px;
}

.menu-item-anim {
  opacity: 0;
  transform: translateY(20px);
}

.mobile-link {
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  display: block;
  text-align: left;
}

.menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.footer-text {
  color: var(--color-text-light);
  text-align: left;
  font-size: 16px;
  line-height: 1.4;
  max-width: 330px;
}

.store-buttons-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* CTA FLUTUANTE */

.cta {
  position: fixed;
  bottom: 30px;
  right: -420px;
  opacity: 0;
  z-index: 9999999;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(224, 224, 224, 0.5);
  border-radius: 48px;
  border: solid 1px #ffffff30;
  transition: 0.5s ease;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 12px 16px 12px 16px;
  box-sizing: border-box;
  max-width: calc(100% - 40px);
  color: var(--color-text-secondary);
  height: fit-content;
}

.cta-ativo {
  right: 30px;
  opacity: 1;
  transition: 0.7s ease;
}

.cta .btn-action {
  margin: 0;
}

.cta .btn:active {
  transform: translateY(1px);
}

.cta .btn:focus {
  outline: 3px solid rgba(0, 0, 0, 0.18);
  outline-offset: 2px;
}

.cta .content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero-section {
  display: flex;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  /* Compensa navbar */
}

/* Coluna Esquerda */
.hero-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 16px 80px var(--spacing-gutter);
  box-sizing: border-box;
  z-index: 2;
}

.hero-title {
  font-size: var(--font-size-h1);
  line-height: 1.1;
  color: var(--color-text-main);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--color-primary-dark);
}

.highlight-lime {
  color: var(--color-primary-lime-hover) !important;
}

.hero-description {
  font-size: 18px;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

/* Botão CTA Principal */
.btn-wrapper {
  display: inline-block;
}

.btn-action {
  margin-bottom: 12px;
}

/* Linha Inferior (Users + Download) */
.hero-footer-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.testimonial-stack {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.testimonial-img {
  margin-left: -18px;
  position: relative;
}

.testimonial-img img {
  width: 36px;
  height: 36x;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--color-bg-white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  filter: grayscale(0%);
  background: #111;
  transition: transform 0.2s;
}

.footer-text-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-gray);
}

.users-count {
  font-weight: 500;
}

/* Coluna Direita */
.hero-right {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Placeholder da imagem (se não houver img tag) */
.hero-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}

.hero-bg img {
  width: 80%;
  bottom: 0;
  right: 6%;
  position: absolute;
}


/* --- ESTILO DO FORMULÁRIO DE CONTATO --- */

.popup-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}


.form-input {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.65);
  /* Fundo translúcido */
  color: var(--color-bg-white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: rgba(22, 85, 73, 0.9);
}

.form-input:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #8cc63f;
  /* Cor Lime no foco */
}

/* Botão de Enviar */
.form-submit-btn {
  margin-top: 10px;
  padding: 16px;
  border-radius: 50px;
  background-color: var(--color-primary-lime);
  color: var(--color-bg-body);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.3s;
}

.form-submit-btn:hover {
  transform: scale(1.02);
}

/* Campos inválidos */
.form-input.invalid,
.form-input-dark.invalid {
  border-color: #ff4d4d !important;
  background-color: rgba(255, 77, 77, 0.05) !important;
}

/* =========================================
   6. SELOS (BADGES)
   ========================================= */
.seal {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  opacity: 0;
  cursor: default;
}

/* PILL */
.seal-pill {
  background-color: #1a4d45;
  color: var(--color-bg-white);
  padding: 5px 25px 5px 5px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.pill-icon-circle {
  width: 50px;
  height: 50px;
  background-color: #8cc63f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.pill-icon-circle svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-bg-white);
  stroke-width: 2;
  fill: none;
}

.pill-text {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pill-text strong {
  font-weight: 700;
  font-size: 20px;
}

.pill-text span {
  font-weight: 400;
  font-style: italic;
  opacity: 0.9;
}

.pill-text.multiline {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.pill-text.multiline strong {
  font-size: 16px;
}

.pill-text.multiline span {
  font-size: 12px;
}

/* CIRCLE */
.seal-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal-circle svg {
  width: 32px;
  height: 32px;
}

.bg-dark-green {
  background-color: #1a4d45;
}

.bg-lime {
  background-color: #81BB3F;
}

.bg-orange {
  background-color: #F4A261;
}

/* Posicionamento */
.pos-1 {
  top: 15%;
  left: 5%;
}

.pos-2 {
  top: 10%;
  right: 15%;
}

.pos-3 {
  top: 35%;
  left: 15%;
}

.pos-4 {
  top: 40%;
  right: 5%;
}

.pos-5 {
  bottom: 30%;
  left: 8%;
}

.pos-6 {
  bottom: 40%;
  right: 2%;
}

.pos-7 {
  bottom: 10%;
  left: 2%;
}

.pos-8 {
  bottom: 20%;
  right: 15%;
}

.pos-9 {
  bottom: 5%;
  right: 30%;
}


/* =========================================
   7. MEDIA QUERIES (RESPONSIVIDADE)
   ========================================= */

/* Desktop Rules */


/* Mobile Rules */


/* --- Container Principal --- */
.brands-section {
  position: relative;
  width: 100%;
  height: 700px;
  background-color: var(--color-primary-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Wrapper dos Logos --- */
.logos-grid-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  z-index: 1;
}

/* --- Linhas --- */
.logo-row {
  display: flex;
  gap: 24px;
  width: 150%;
  /* Largura extra para movimento */
  flex-shrink: 0;
  margin-left: -25%;
  /* Centralização inicial */
}

/* Ajuste de margem inicial para dar o efeito "desencontrado" */

.row-even {
  margin-left: calc(-5% + 16px);
}

.row-odd {
  margin-left: calc(-5% - 16px);
}

/* --- O Item (Quadrado da Logo) --- */
.logo-item {
  width: 128px;
  height: 128px;
  background-color: var(--color-bg-off-white);
  /* Cor do quadrado placeholder */
  opacity: 0.15;
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.logo-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* --- Camada de Conteúdo (Texto) --- */
.content-overlay {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.section-title {
  color: var(--color-text-light);
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 40px 0;
}

/* --- Botão CTA --- */
.btn-wrapper {
  display: inline-block;
}

.btn-action-2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-family-primary);
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  border: none;
  transition: transform 0.2s ease;
  background-color: var(--color-primary-lime);
  color: var(--color-text-white);
}

.btn-action-2:hover {
  transform: scale(1.02);
}

.icon-container-2 {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-bg-2 {
  position: absolute;
  width: 36px;
  height: 36px;
  background-color: var(--color-primary-dark);
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  z-index: 1;
}

.arrow-svg-2 {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 20px;
  stroke: #16514B;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsivo simples */


/* --- SECTION CONTAINER --- */
.pin-section.dark-theme {
  width: 100%;
  display: flex;
  align-items: left;
  background-color: var(--color-primary-dark);
  /* Fundo Verde Escuro */
  overflow: hidden;
  position: relative;
}

/* Ajuste do Wrapper */
.pin-content-wrapper {
  display: flex;
  align-items: left;
  /* Centraliza verticalmente */
  width: max-content;
}

/* Trilho */
.h-scroll-wrapper {
  display: flex;
  gap: 0;
  align-items: left;
}

/* Linhas finas de separação */
.h-scroll-wrapper {
  gap: 2px;
}


/* --- CARD BASE (480x405) --- */
.service-card1,
.service-card2,
.service-card3,
.intro-card {
  width: 480px;
  height: 405px;
  padding: 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0px;
  /* SEM BORDAS ARREDONDADAS */
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

/* Cores e Hovers Específicos */
.service-card1 {
  background-color: var(--color-green-deep);
}

.service-card1:hover {
  background-color: var(--color-green-deep-hover);
}

.service-card2 {
  background-color: var(--color-bg-body);
}

.service-card2:hover {
  background-color: #f1f1f1;
}

.service-card3 {
  background-color: var(--color-primary-lime);
}

.service-card3:hover {
  background-color: var(--color-primary-lime-hover);
}

.intro-card {
  background-color: var(--color-bg-body);
  justify-content: center;
  gap: 30px;
}


/* --- TIPOGRAFIA & ICONES (Mantidos do seu código anterior) --- */
.intro-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.intro-desc {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  max-width: 90%;
}

.feature-card .card-top {
  margin-bottom: 24px;
}

.card-icon {
  width: 72px;
  height: 72px;
  background-color: var(--color-primary-lime);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
}

.service-card3 .card-icon {
  background-color: var(--color-bg-white);
}

.card-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-primary-dark);
  stroke-width: 2;
  fill: none;
}

.card-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.card-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 0;
  opacity: 0.8;
}

/* Botões Empilhados */
.card-actions-stacked {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: auto;
}

.btn-store-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  background-color: #8cc63f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FEFCFB;
  text-decoration: none;
  border-radius: 64px;
  transition: all 0.3s ease;
}

.btn-store-custom:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-bg-body);
  transform: translateY(-2px);
}

.store-icon svg {
  width: 28px;
  height: 28px;
  fill: #FEFCFB;
  transition: fill 0.3s ease;
}

.btn-store-custom:hover .store-icon svg {
  fill: #FEFCFB;
}

.store-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.txt-small {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.8;
}

.txt-large {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.intro-title {
  font-size: 36px;
}

.feature-card .card-title {
  font-size: 26px;
}

/* Utilitários */
.text-white {
  color: var(--color-text-white) !important;
}

.text-dark {
  color: var(--color-primary-dark) !important;
}

.text-light {
  color: var(--color-bg-body) !important;
}

.highlight-lime {
  color: var(--color-primary-lime) !important;
}

/* Garante que o espaçador do GSAP tenha a mesma cor de fundo da seção */
.pin-spacer {
  background-color: #FEFCFB !important;
  /* Mesma cor da .pin-section */
}

/* Remove margens extras que podem causar o pulo */
.pin-section.dark-theme {
  margin: 0;
  /* Garante que o scroll horizontal não vaze */
  width: 100vw;
  max-width: 100%;
}

/* Mobile */

/* SCROLL LOCK */
body.no-scroll {
  overflow: hidden !important;
}


/* --- ABOUT SECTION --- */
.about {
  width: 100vw;
  height: 100vh;
  display: flex;
  overflow: hidden;
  /* Evita scroll na hero */
}

/* Lado Esquerdo */
.about-left {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
}

/* Posicionamento dos selos na about section */
.about-seal-1 {
  top: 10%;
  left: 10%;
}

.about-seal-2 {
  top: 20%;
  right: 15%;
}

.about-seal-3 {
  bottom: 25%;
  left: 5%;
}

.about-seal-4 {
  bottom: 15%;
  right: 10%;
}

.about-image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Lado Direito */
.about-right {
  width: 50%;
  height: 100%;
  padding: 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about-title {
  font-size: 48px;
  font-weight: 500;
  color: var(--color-text-main);
  margin: 0 0 24px 0;
  line-height: 1.1;
}

.about-title b {
  font-weight: 700;
  color: var(--color-primary-dark);
}

.about-text {
  font-size: 18px;
  color: var(--color-text-gray);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
}

/* Container dos Botões */
.buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}


/* --- OVERLAY DO POPUP (Mesmo estilo anterior) --- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.popup-card {
  position: relative;
  width: 100%;
  max-width: 1080px;
  min-height: 600px;
  /* Allow height to grow */
  max-height: 90vh;
  /* Prevent exceeding viewport */
  background: rgba(22, 81, 75, 0.45);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  display: flex;
  overflow: hidden;
  clip-path: circle(0px at 50% 50%);
  margin: auto;
  /* Ensure centering logic if needed */
}

.popup-image-col {
  width: 45%;
  position: relative;
  background-color: #ddd;
  /* Imagem default, será trocada via JS */
  background-size: cover;
  background-position: center;
  margin: 32px;
  border-radius: 24px;
}

.popup-content-col {
  width: 45%;
  padding: 60px 60px 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--color-bg-white);
  overflow: hidden;
  max-height: 100%;
}

.close-popup-btn {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 2rem;
  color: var(--color-primary-lime);
  font-weight: 700;
  line-height: 1;
  z-index: 10;
  cursor: pointer;
  transition: transform 0.3s;
}

.close-popup-btn:hover {
  transform: scale(1.1) rotate(10deg);
}

.popup-title {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 30px 0;
  line-height: 1.2;
  color: var(--color-bg-white);
}

.popup-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #f0f0f0;
  font-weight: 400;
}

.popup-text:last-child {
  margin-bottom: 0;
}

/* --- POPUP PLAN SELECTION --- */
.plan-selection-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.plan-selection-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 400px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: var(--color-bg-white);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.plan-selection-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: var(--color-primary-lime);
}

.plan-selection-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.8;
}

.plan-price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-white);
}

.plan-price small {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.selection-arrow {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.plan-selection-btn:hover .selection-arrow {
  background: var(--color-primary-lime);
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

.selection-arrow svg {
  width: 20px;
  height: 20px;
}

/* --- SEÇÃO ESTATÍSTICAS (SPLIT) --- */
.stats-section {
  padding: 100px var(--spacing-gutter);
  display: flex;
  justify-content: center;
}

.stats-wrapper {
  display: flex;
  align-items: center;
  /* Centraliza verticalmente */
  gap: 60px;
  /* Espaço entre as colunas */
  max-width: 1200px;
  width: 100%;
}

/* --- COLUNA ESQUERDA --- */
.stats-left {
  flex: 1;
  /* Ocupa 50% */
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.stats-title {
  color: var(--color-text-main);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  text-align: left;
}

.stats-title span {
  font-size: 62px;
  font-weight: 600;
  color: var(--color-green-deep-hover);
}

/* Grid de Pills (2 colunas para ficar compacto na esquerda) */
.pills-grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2 colunas iguais */
  gap: 20px;
  width: 100%;
}

/* Ajuste das Pills Estáticas */
.seal-pill.static-pill {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  opacity: 1;
  width: 100%;
  /* Ocupa toda a célula do grid */
  box-sizing: border-box;
  justify-content: flex-start;
  /* Alinha ícone e texto */
}

/* Footer Inline (Usuários) */
.stats-footer-inline {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.users-count-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-gray);
  max-width: 200px;
  line-height: 1.3;
}

/* --- COLUNA DIREITA (VIDEO) --- */
.stats-right {
  flex: 1;
  /* Ocupa 50% */
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  width: 100%;
  /* Altura fixa ou baseada em proporção (ex: celular) */
  height: 500px;
  border-radius: 32px;
  overflow: hidden;
  background-color: #f0f0f0;
  /* Placeholder cor */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.stats-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Garante que o vídeo preencha tudo */
  display: block;
}

/* --- RESPONSIVO --- */


.roi-calculator-section {
  font-family: var(--font-family-primary);
  padding: 60px var(--spacing-gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roi-header {
  text-align: center;
  margin-bottom: 50px;
}

.roi-header h2 {
  color: var(--color-primary-dark);
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.roi-header p {
  color: var(--color-text-gray);
  font-size: 1rem;
  font-weight: 500;
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  width: 100%;
  max-width: 1100px;
  align-items: center;
}

.roi-inputs {
  width: 100%;
}

.input-group {
  margin-bottom: 35px;
}

.input-label {
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: block;
}

.input-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.input-helper {
  color: #888;
  font-size: 0.85rem;
}

.input-value {
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 1rem;
}

input[type=range] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  margin: 0;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: var(--color-primary-lime);
  border-radius: 2px;
}

input[type=range]::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
  box-shadow: 0 0 0 4px var(--color-primary-lime);
  transition: transform 0.1s;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.05);
}

.roi-result-card {
  background-color: var(--color-primary-lime);
  color: var(--color-text-white);
  padding: 32px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 350px;
  max-width: 600px;
  min-width: 600px;

}

.result-text-group {
  text-align: left;
  flex: 1;
}

.label-economiza {
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.9;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.total-saved {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--color-primary-dark);
}

.roi-feedback {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  opacity: 0.9;
}

.result-comparison {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 210px;
  padding-left: 20px;
}

.bar-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 90px;
  height: 100%;
}

.bar {
  width: 100%;
  border-radius: 16px 16px 0 0;
  transition: height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bar-cost {
  background-color: var(--color-text-white);
}

.bar-savings {
  background-color: var(--color-primary-dark);
  height: 0%;
}

.bar-label {
  margin-top: 8px;
  font-size: 1rem;
  color: var(--color-text-white);
  text-align: right;
  font-weight: 500;
  line-height: 1.2;
}



/* --- SEÇÃO DE CONTATO --- */
.contact-section {
  padding: 100px var(--spacing-gutter);
  display: flex;
  justify-content: center;
  background-color: var(--color-primary-dark);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-gutter);
  height: 100%;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  gap: 60px;
}

/* --- LADO ESQUERDO --- */
.contact-left {
  flex: 1;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-title {
  font-size: 52px;
  font-weight: 600;
  color: var(--color-text-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 18px;
  color: var(--color-text-white);
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-white);
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-lime);
  /* Lime */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* --- LADO DIREITO (FORMULÁRIO) --- */
.contact-right {
  flex: 1;
  background-color: var(--color-primary-lime);
  /* Fundo Verde Escuro */
  padding: 50px;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--color-text-white);
  font-size: 16px;
  font-weight: 600;
  margin-left: 4px;
}

.form-input-dark {
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
  /* Fundo sutil */
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.form-input-dark::placeholder {
  color: rgba(22, 81, 75, 0.5);
}

.form-input-dark:focus {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: var(--color-primary-lime);
  /* Lime no foco */
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* --- FAQ SECTION --- */
.faq-section {
  padding: 100px var(--spacing-gutter);
  background-color: var(--color-primary-dark);
  color: var(--color-bg-white);
}

.faq-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 60px;
  text-align: center;
}

.faq-title {
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
}

.faq-title .highlight-bold {
  font-weight: 600;
}

.faq-subtitle {
  font-size: 22px;
  opacity: 0.9;
  font-weight: 400;
  margin-bottom: 92px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1000px;
  justify-self: center;
}

.faq-item {
  background-color: var(--color-bg-white);
  border-radius: 50px;
  overflow: hidden;
  transition: background-color 0.4s ease, transform 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-primary-dark);
  font-size: 24px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  color: var(--color-text-white);
}

.faq-answer-inner {
  padding: 12px 56px 56px 56px;
  font-size: 18px;
  line-height: 1.6;
}

/* Active State */
.faq-item.active {
  background-color: var(--color-primary-lime);
}

.faq-item.active .faq-question {
  color: var(--color-text-white);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}





/* --- PLANS SECTION --- */
.plans-section {
  padding: 80px var(--spacing-gutter);
  overflow: hidden;
}

.plans-mobile-container {
  display: none;
}

.plans-header {
  text-align: center;
  margin-bottom: 60px;
}

.plans-title {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.plans-title span {
  font-weight: 300;
}

.plans-container {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
}

/* Sidebar */
.plans-sidebar {
  width: 360px;
  background-color: var(--color-primary-dark);
  border-radius: 40px 0 0 40px;
  padding-bottom: 20px;
  margin-top: 155px;
  /* Aligned with features */
  z-index: 2;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
}

.sidebar-header {
  padding: 20px 30px 32px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-text-white);
  font-size: 24px;
  font-weight: 600;
}

.benefit-icon-circle {
  width: 40px;
  height: 40px;
  background-color: var(--color-primary-lime);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-text-white);
}

.benefit-icon-circle svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-text-white);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-list {
  display: flex;
  flex-direction: column;
}

.benefit-item {
  padding: 0 32px;
  color: var(--color-text-white);
  border-bottom: 2px solid var(--color-primary-lime);
  height: 80px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.benefit-item:last-child {
  border-bottom: none;
}

/* Grid */
.plans-grid-wrapper {
  flex: 1;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

/* Plan Card */
.plan-card {
  background-color: #f6faf2;
  /* Very light lime */
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
  padding-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.plan-card:hover {
  z-index: 10;
  transform: translateY(-10px);
  transition: all 0.4s ease-out;
}

.plan-card-header {
  background-color: var(--color-primary-lime);
  padding: 40px 20px;
  border-radius: 40px 40px 0 0;
  color: var(--color-text-white);
  text-align: center;
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-name {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-text-white);
}

.price-old {
  font-size: 30px;
  color: var(--color-text-light);
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin: 0 auto 5px;
}

/* Red cross line effect */
.price-old::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: 45%;
  height: 4px;
  background: #e23131c0;
  transform: rotate(-5deg);
  border-radius: 2px;
}

.price-tag {
  display: flex;
  flex-direction: column;
}

.a-partir {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.price-main {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
}

.price-main span {
  font-size: 12px;
  font-weight: 400;
}

/* Highlight Card (Ouro) */
.plan-highlight {
  background-color: #fff9f0;
  /* Very light gold */
  z-index: 5;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--color-secondary-gold);
  animation: pulseDelay 4s ease-in-out infinite;
}

@keyframes pulseDelay {
  0% {
    transform: scale(1);
  }

  15% {
    transform: scale(1.03);
  }

  30% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

.plan-highlight .plan-card-header {
  background-color: var(--color-secondary-gold);
}

.badge-highlight {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary-dark);
  color: var(--color-text-white);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.check-badge {
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary-dark);
}

.check-badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* Features */
.plan-features {
  display: flex;
  flex-direction: column;
}

.feature-status {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.feature-status:last-child {
  border-bottom: none;
}

.icon-check {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary-lime);
  stroke-width: 3;
  fill: none;
}

.plan-highlight .icon-check {
  stroke: var(--color-secondary-gold);
}

.icon-cross {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary-dark);
  stroke-width: 2;
}

/* Footer & Buttons */
.plan-footer {
  padding: 0px 8px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
}

.plan-footer:last-child {
  padding-bottom: 0;
}

/* Custom Buy Button (Overrides btn-action for full width) */
.plan-footer .btn-action {
  width: 100%;
  max-width: none;
  font-size: 16px;
  padding: 15px;
}

.btn-outline {
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  color: var(--color-text-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--color-primary-lime);
  color: var(--color-text-white);
  border: 1.5px solid var(--color-primary-lime-hover);
}

.plan-legal {
  font-size: 11px;
  color: rgba(3, 46, 21, 0.6);
  text-align: left;
  margin-top: 15px;
  padding: 0 5px;
}

.plan-legal p {
  margin: 0 0 5px;
  line-height: 1.3;
}


/* --- MAIN FOOTER --- */
.main-footer {
  background-color: var(--color-primary-dark);
  padding: 0px var(--spacing-gutter);
  position: relative;
  overflow: hidden;
  color: var(--color-text-white);
  height: 90vh;
  display: flex;
  flex-direction: column;
}

.footer-wrapper {
  max-width: 1280px;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 98px;
  margin-bottom: 80px;
}

/* Marca Column */

.brand-col .logo-footer {
  padding: 0px 0px 32px 0px;
}

.brand-col .logo-footer:hover {
  transform: scale(1.02);
  transition: all 0.4s ease-in-out;
}

.logo-footer img {
  width: 320px;
}

.footer-tagline {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 105px;
  max-width: 320px;
}

.social-label {
  display: block;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 20px;
}

.social-icon {
  width: 96px;
  height: 96px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-text-white);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--color-primary-lime);
  transform: translateY(-5px);
}

.social-icon svg {
  width: 48px;
  height: 48px;
}

/* Navigation Columns */
.footer-col-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 32px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links a {
  color: var(--color-text-white);
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-links {
  margin-bottom: 64px;
}

/* App Column */
.app-downloads {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-downloads .footer-col-title {
  margin-bottom: 0px;
}

.app-downloads .btn-store-custom:hover {
  background-color: var(--color-text-white);
  color: var(--color-primary-dark);
}

.app-downloads .btn-store-custom:hover .store-icon svg {
  fill: var(--color-primary-dark);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: left;
}

.badge-item img {
  height: 80px;
  width: auto;
}

/* Marquee Background */
.footer-marquee-container {
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.1;
  white-space: nowrap;
}

.footer-marquee-content {
  display: flex;
  gap: 64px;
}

.marquee-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 260px;
  color: #FEFCFB;
  letter-spacing: -0.02em;
}

/* Copyright Row */
.footer-copyright {
  background-color: #e6e8eb;
  height: 44px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}

/* --- RESPONSIVO GERAL --- */

/* Tablet & Smaller Laptops (max-width: 1024px) */


/* Mobile (max-width: 768px) */
/* =========================================
   8. MEDIA QUERIES (ORGANIZED)
   ========================================= */

/* --- DESKTOP (min-width: 901px) --- */
@media (min-width: 901px) {
  .navbar {
    display: flex !important;
  }

  .navbar-mobile {
    display: none !important;
  }

  .mobile-menu-overlay {
    display: none !important;
  }
}

/* --- NOTEBOOK (max-width: 1300px) --- */
@media (max-width: 1300px) {
  .plans-container {
    flex-direction: column;
    align-items: center;
  }

  .plans-sidebar {
    width: 100%;
    margin-top: 0;
    margin-bottom: 40px;
    border-radius: 40px 40px 0 0;
    padding-bottom: 0;
  }

  .sidebar-header {
    justify-content: center;
    padding-bottom: 30px;
  }

  .benefit-list {
    display: none;
  }

  .plans-sidebar {
    padding: 20px;
    background: transparent;
    box-shadow: none;
    color: var(--color-primary-dark);
  }

  .sidebar-header {
    background: var(--color-primary-dark);
    border-radius: 50px;
    color: #fff;
    padding: 15px 40px;
    display: inline-flex;
    margin-bottom: 30px;
  }

  .benefit-icon-circle {
    background-color: var(--color-primary-lime);
  }

  .plans-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
  }
}

/* --- TABLET (max-width: 1024px) --- */
@media (max-width: 1024px) {

  /* General */
  .faq-section {
    padding: 80px 40px;
  }

  .faq-title {
    font-size: 56px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Plans */
  .plans-container {
    flex-direction: column;
    align-items: center;
  }

  .plans-sidebar {
    width: 100%;
    margin-top: 0;
    margin-bottom: 40px;
    border-radius: 40px;
  }

  .sidebar-header {
    padding: 30px;
    justify-content: center;
  }

  .benefit-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .benefit-item {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Stats */
  .stats-wrapper {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .stats-left,
  .stats-right {
    width: 100%;
  }

  .stats-title {
    text-align: center;
  }

  .pills-grid-split {
    grid-template-columns: 1fr;
  }

  .stats-footer-inline {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .video-container {
    height: 400px;
  }
}

/* --- MOBILE (max-width: 768px) --- */
@media (max-width: 900px) {

  body {
    overflow-x: hidden;
  }

  /* Form */
  .form-input {
    padding: 14px;
  }

  /* Botões */

  .btn-action,
  .btn-action-2,
  .trigger-btn {
    font-size: var(--font-size-mobile-btn);
    width: 100%;
    gap: 12px;
  }

  /* Navbar & Hero (Base) */
  .navbar {
    display: none !important;
  }

  .navbar-mobile {
    display: flex !important;
  }

  .logo-header {
    width: 75%;
    max-width: 75%;
  }

  .cta {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 32px);
    max-width: 400px;
    min-width: auto;
    bottom: 20px;
  }

  .hero-section {
    flex-direction: column;
    margin-top: 100px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    height: auto;
  }

  .hero-left {
    text-align: center;
    align-items: center;
    padding: var(--spacing-gutter-mobile);
  }

  .hero-title {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
  }

  .hero-title br {
    display: none;
  }

  .hero-description {
    text-align: center;
    font-size: 16px;
  }

  .hero-right {
    overflow: hidden;
    background-color: #f9f9f9;
  }

  .hero-bg {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-bg img {
    width: 90%;
    position: relative;
    right: 0;
  }

  .hero-footer-row {
    display: none;
  }

  .seal {
    transform: scale(0.8);
  }

  .seal-pill {
    display: none;
  }

  .pos-2 {
    top: 10%;
    right: 5%;
  }

  .pos-3 {
    top: 15%;
    left: 7%;
  }

  .pos-4 {
    top: 45%;
    right: 10%;
  }

  .pos-8 {
    display: none;
  }

  /* Brands Section */

  .section-title {
    font-size: 32px;
  }

  .section-title br {
    display: none;
  }

  /* Pin Section / Horizontal Scroll */
  .pin-section.dark-theme {
    height: auto;
    padding: 0px var(--spacing-gutter-mobile);
  }

  .pin-content-wrapper {
    width: 100%;
    justify-content: center;
    flex-direction: column;
  }

  .h-scroll-wrapper {
    flex-direction: column;
    width: 100%;
  }

  .intro-content {
    width: 100%;
  }

  .intro-title {
    font-size: var(--font-size-mobile-t);
  }

  .intro-desc.text-dark {
    font-size: var(--font-size-mobile);
    max-width: 100%;
  }

  .service-card1,
  .service-card2,
  .service-card3,
  .intro-card {
    width: 100%;
    height: auto;
    min-height: 300px;
    padding: 56px 32px;
  }

  .about {
    padding: var(--spacing-gutter-mobile);
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 24px;
  }

  .about-left,
  .about-right {
    padding: 0px;
    width: 100%;
    height: fit-content;
    gap: 24px;
  }

  .about-title,
  .about-text {
    padding: 0;
    margin: 0;
  }

  .about-title {
    font-size: var(--font-size-mobile-t);
  }

  .about-text {
    font-size: var(--font-size-mobile);
  }

  .btn-wrapper {
    width: 100%;
    gap: 12px;
    display: flex;
    flex-direction: column;
  }

  .btn-action {
    margin: 0;
  }

  /* Dados */

  .stats-section {
    padding: var(--spacing-gutter-mobile);
  }

  .stats-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .stats-title,
  .stats-title span {
    font-size: var(--font-size-mobile-t);
  }

  .stats-left .seal-pill {
    display: flex;
    text-align: center;
    align-items: center;
    gap: 12px;
    max-width: 100%;
  }

  .seal-pill .pill-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4px;
    align-self: center;
  }

  .seal-pill .pill-text.multiline {
    flex-direction: column;
  }

  .seal-pill .pill-text,
  .pill-text.multiline span,
  .pill-text strong {
    font-size: var(--font-size-mobile);
  }

  .pill-text.multiline strong,
  .pill-text strong {
    font-size: var(--font-size-mobile);
  }

  .stats-footer-inline {
    flex-direction: row;
    justify-content: center;
    text-align: left;
    gap: 8px;
  }

  /* Popup */
  .popup-card {
    flex-direction: column;
    width: 95vw;
    height: fit-content;
    max-height: 90vh;
    min-height: auto;
    overflow-y: auto;
    border-radius: 20px;
  }

  .popup-image-col {
    display: none;
  }

  .popup-content-col {
    width: 100%;
    padding: 48px 24px 32px 24px;
    box-sizing: border-box;
    order: 2;
    gap: 24px;
    overflow-y: auto;
  }

  .popup-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .popup-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .close-popup-btn {
    top: 12px;
    right: 12px;
    font-size: 1.8rem;
    padding: 12px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .plan-selection-btn {
    min-width: 250px;
  }

  /* Calculadora de ROI */

  .roi-calculator-section {
    padding: var(--spacing-gutter-mobile);
    height: fit-content;
  }

  .roi-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 390px;
  }

  .roi-inputs {
    width: 100%;
    max-width: 370px;
  }

  .input-label {
    font-weight: 700;
    color: var(--color-primary-dark);
    font-size: var(--font-size-mobile);
    margin-bottom: 16px;
    display: block;
  }

  .input-helper {
    margin-top: 8px;
    color: var(--color-text-gray);
    font-size: var(--font-size-mobile);
  }

  .input-value {
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: var(--font-size-mobile);
  }

  input[type=range]::-webkit-slider-runnable-track {
    height: 5px;
    border-radius: 4;
  }

  .roi-result-card {
    padding: 24px 20px 16px 20px;
    flex-direction: column;
    min-width: fit-content;
    min-height: 400px;
  }

  .label-economiza {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .total-saved {
    font-size: 56px;
    font-weight: 700;
  }

  .roi-feedback {
    font-size: 22px;
    font-weight: 500;
  }

  .result-comparison {
    gap: 24px;
    height: 180px;
  }

  .bar-container {
    width: 110px;
  }

  .bar {
    border-radius: 20px 20px 0 0;
  }

  .bar-label {
    margin-top: 8px;
    font-size: 1rem;
    align-self: flex-end;
  }

  /* Seção planos */


  .plans-section {
    padding: var(--spacing-gutter-mobile);
  }

  .plans-title {
    font-size: var(--font-size-mobile-t);
  }

  /* Planos desktop grid*/

  .plans-container {
    display: none !important;
  }

  .plans-mobile-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }


  /* Planos mobile cards */
  /* --- MOBILE PLAN STYLES --- */
  .mobile-plan-card {
    background-color: var(--color-bg-white);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .mobile-plan-card.highlight {
    border: 10px solid var(--color-primary-lime);
    animation: pulseDelay 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
  }

  .badge-highlight-mobile {
    background-color: var(--color-primary-lime);
    color: var(--color-text-white);
    text-align: center;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 0 0 12px 12px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
  }

  .mobile-plan-header {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 10px;
  }

  .mobile-plan-name {
    font-size: 32px;
    color: var(--color-primary-dark);
    font-weight: 600;
  }

  .mobile-price-container {
    text-align: center;
  }

  .mobile-price-old {
    font-size: 24px;
    color: var(--color-text-gray);
    opacity: 0.9;
    position: relative;
    display: inline-block;
    margin: 0 auto 5px;
  }

  .mobile-price-old::after {
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    top: 45%;
    height: 2px;
    background: #e23131c0;
    transform: rotate(-5deg);
    border-radius: 2px;
  }

  .mobile-price-main {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary-dark);
  }

  .mobile-price-main small {
    font-size: 14px;
    font-weight: 400;
  }

  /* Benefits List Mobile */
  .mobile-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-gray);
  }

  .mobile-benefit-item.included {
    color: var(--color-text-main);
  }

  .mobile-benefit-item.excluded {
    opacity: 0.5;
    text-decoration: line-through;
  }

  .mobile-benefit-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .mobile-benefit-item.included svg {
    stroke: var(--color-primary-lime);
    fill: none;
    stroke-width: 2;
  }

  .mobile-benefit-item.excluded svg {
    stroke: #ff4d4d;
    fill: none;
    stroke-width: 2;
  }

  /* Footer Mobile */
  .mobile-plan-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
  }

  .mobile-full-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 16px;
  }

  .mobile-outline-btn {
    width: 100%;
    justify-content: center;
    background-color: var(--color-primary-lime);
    color: var(--color-text-white);
    padding: 14px;
    font-size: 16px;
  }

  .mobile-outline-btn .arrow-svg {
    stroke: #fff;
  }

  .mobile-legal {
    font-size: 12px;
    color: var(--color-text-gray);
    text-align: left;
    opacity: 0.8;
    line-height: 1.4;
  }



  /* Seção FAQ */

  .faq-section {
    padding: 64px var(--spacing-gutter-mobile) 32px var(--spacing-gutter-mobile);
  }

  .faq-header {
    margin-bottom: 24px;
  }

  .faq-title {
    font-size: 48px;
  }

  .faq-subtitle {
    font-size: 20px;
    margin-bottom: 48px;
  }

  .faq-question {
    font-size: 18px;
    padding: 24px 32px 24px 32px;
  }

  .faq-icon {
    font-size: 24px;
    min-width: 32px;
    min-height: 32px;
    margin-left: 12px;
  }

  .faq-answer {
    margin-top: 0px;
  }

  .faq-answer-inner {
    font-size: 16px;
    padding: 24px 32px 24px 32px;
  }

  /* Seção Contato */

  .contact-section {
    padding: var(--spacing-gutter-mobile);
  }

  .contact-wrapper {
    display: flex;
    flex-direction: column;
  }

  .contact-left {
    gap: 12px;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-desc {
    font-size: var(--font-size-mobile);
    margin-bottom: 24px;
  }

  .contact-right {
    padding: 32px 16px 32px 16px;
  }

  .contact-form {
    gap: 16px;
  }

  .info-item {
    font-size: 16px;
  }

  /* Footer */

  .main-footer {
    padding: var(--spacing-gutter-mobile);
    height: fit-content;
  }

  .footer-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
  }

  .trust-badges {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }
}

/* =========================================
   LEGAL PAGES STYLING
   ========================================= */
.legal-content-section {
  padding: 160px var(--spacing-gutter) 80px;
  max-width: 100%;
  margin: 0 auto;
  background-color: var(--color-bg-body);
}

.legal-content-section h1 {
  font-family: var(--font-family-primary);
  font-size: 48px;
  color: var(--color-primary-dark);
  margin-bottom: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.legal-content-section h2 {
  font-family: var(--font-family-primary);
  font-size: 32px;
  color: var(--color-primary-dark);
  margin-top: 40px;
  margin-bottom: 24px;
  font-weight: 600;
}

.legal-content-section h3 {
  font-family: var(--font-family-primary);
  font-size: 24px;
  color: var(--color-primary-dark);
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 600;
}

.legal-content-section p,
.legal-content-section li {
  font-family: var(--font-family-primary);
  font-size: 18px;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.legal-content-section ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.legal-content-section li {
  margin-bottom: 8px;
}

.legal-content-section strong {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.legal-content-section a {
  color: var(--color-primary-lime);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-content-section a:hover {
  color: var(--color-primary-dark);
}

@media (max-width: 768px) {
  .legal-content-section {
    padding: 120px var(--spacing-gutter-mobile) 64px;
  }

  .legal-content-section h1 {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .legal-content-section h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
  }

  .legal-content-section h3 {
    font-size: 20px;
  }

  .legal-content-section p,
  .legal-content-section li {
    font-size: 16px;
  }
}

/* =========================================
   PAGE TRANSITION OVERLAY
   ========================================= */
#page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-dark);
  z-index: 9999;
  pointer-events: none;
  /* Allows clicks to pass through when hidden/opacity 0 */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  /* Starts visible to hide initial load */
  transform-origin: top;
}

#page-transition-overlay .loader-logo {
  width: 200px;
  height: auto;
  opacity: 0;
}

/* =========================================
   COOKIE CONSENT SYSTEM
   ========================================= */

/* --- Banner --- */
/* --- Banner --- */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: calc(100% - 48px);
  max-width: 500px;
  background-color: #fff;
  z-index: 10000;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  transform: translateX(-150%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#cookie-banner.active {
  transform: translateX(0);
}

.cookie-text {
  flex: 1;
  max-width: 800px;
  color: var(--color-text-body);
  font-size: 14px;
}

.cookie-text p {
  margin: 0 0 8px 0;
}

.cookie-text a {
  color: var(--color-primary-dark);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.btn-cookie-settings {
  background: transparent;
  border: 1px solid var(--color-primary-dark);
  color: var(--color-primary-dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cookie-settings:hover {
  background: var(--color-bg-light);
}

.btn-cookie-accept {
  background: var(--color-primary-lime);
  border: none;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cookie-accept:hover {
  transform: scale(1.05);
}

/* --- Preferences Modal --- */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#cookie-settings-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-card {
  background: white;
  width: 90%;
  max-width: 600px;
  border-radius: 16px;
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

#cookie-settings-modal.active .cookie-modal-card {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid #eee;
  padding-bottom: 16px;
}

.cookie-modal-header h3 {
  margin: 0;
  color: var(--color-primary-dark);
}

.btn-close-modal {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}

.cookie-option:last-child {
  border-bottom: none;
}

.option-info {
  flex: 1;
  padding-right: 20px;
}

.option-info h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: var(--color-primary-dark);
}

.option-info p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: var(--color-primary-lime);
}

input:checked+.slider:before {
  transform: translateX(22px);
}

input:disabled+.slider {
  background-color: var(--color-primary-dark);
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {

  #cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

/* --- Form Disclaimer --- */
.form-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
  line-height: 1.4;
  text-align: center;
  max-width: 100%;
}

.form-disclaimer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  transition: color 0.3s;
}

.form-disclaimer a:hover {
  color: #fff;
}