/* Estilos base */
    :root {
      --primary-color: #2d4c63;
      --secondary-color: #1a2c3d;
      --accent-color: #ffc107;
      --silver-color: #c0c0c0;
      --gold-color: #ffd700;
      --diamond-color: #b9f2ff;
      --text-light: #ffffff;
      --text-dark: #333333;
      --border-radius: 10px;
      --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      --transition: all 0.3s ease;
      --custom-green: #2ba304; /* Adicionando a cor personalizada */
    }
    body {
      font-family: "Poppins", sans-serif;
      background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
      color: var(--text-light);
      min-height: 100vh;
      line-height: 1.6;
    }
    /* Animações */
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
      70% { box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
    }
    .animate-pulse-button {
      animation: pulse 2s infinite;
    }
    .animate-pulse-button:hover {
      animation: none;
    }
    .bg-glass {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
    }
    /* Estilos para animações GSAP */
    .gsap-reveal {
      opacity: 0;
      visibility: hidden;
    }
    .gsap-fade-up {
      opacity: 0;
      transform: translateY(30px);
    }
    .gsap-fade-in {
      opacity: 0;
    }
    .gsap-scale-in {
      opacity: 0;
      transform: scale(0.9);
    }
    .gsap-stagger-item {
      opacity: 0;
      transform: translateY(20px);
    }
    /* Estilo para o logo grande */
    .large-logo {
      width: auto !important;
      height: 120px !important;
      filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)) !important;
      animation: logoGlow 3s infinite alternate !important;
    }
    @keyframes logoGlow {
      from { filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3)); }
      to { filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.5)); }
    }
    /* Estilo para o badge de lançamento */
    .launch-badge {
      background: linear-gradient(135deg, #ff7e5f, #feb47b);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      margin-bottom: 1rem;
    }
    /* Estilo para os cards de recursos */
    .feature-card {
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      border-color: rgba(255, 193, 7, 0.3);
    }
    .feature-icon {
      color: #2ba304; /* Verde personalizado */
    }
    /* Estilo para a seção de chamada à ação */
    .cta-section {
      background: linear-gradient(135deg, rgba(45, 76, 99, 0.8), rgba(26, 44, 61, 0.8)), url('img/pattern.png');
      background-size: cover;
      background-position: center;
    }
    /* Estilo para a seção de depoimentos */
    .testimonial-card {
      position: relative;
    }
    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: -20px;
      left: 20px;
      font-size: 80px;
      color: rgba(255, 193, 7, 0.2);
      font-family: serif;
      line-height: 1;
    }
    /* Estilo para a timeline de lançamento */
    .timeline-container {
      position: relative;
    }
    .timeline-container::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 2px;
      background-color: rgba(255, 193, 7, 0.5);
      transform: translateX(-50%);
    }
    .timeline-item {
      position: relative;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 16px;
      height: 16px;
      background-color: #ffc107;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
    }
    /* Estilo para a seção de contato social */
    .social-icon {
      transition: all 0.3s ease;
    }
    .social-icon:hover {
      transform: translateY(-3px) scale(1.1);
      color: #ffc107;
    }
    /* Ajustes responsivos */
    @media (max-width: 640px) {
      .large-logo {
        height: 80px !important;
      }
      .feature-card {
        padding: 1rem !important;
      }
      .feature-icon {
        font-size: 2rem !important;
        margin-bottom: 0.75rem !important;
      }
      .plan-card .p-6 {
        padding: 1rem !important;
      }
    }
    /* Melhorar a visualização em dispositivos móveis */
    .container {
      width: 100%;
      padding-right: 1rem;
      padding-left: 1rem;
    }
    @media (min-width: 640px) {
      .container {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
      }
    }
    @media (min-width: 1024px) {
      .container {
        padding-right: 2rem;
        padding-left: 2rem;
      }
    }
    /* Estilos para formulários - Ajustado para texto mais escuro */
    .form-input {
      background-color: #ffffff !important;
      color: #000000 !important;
      border: 1px solid #d1d5db !important;
      border-radius: 0.5rem !important;
      padding: 0.75rem 1rem 0.75rem 2.5rem !important;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
      transition: all 0.2s ease !important;
    }
    .form-input:focus {
      border-color: #ffc107 !important;
      box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25) !important;
      outline: none !important;
    }
    .form-input::placeholder {
      color: #9ca3af !important;
    }
    .form-label {
      display: block !important;
      font-size: 0.875rem !important;
      font-weight: 500 !important;
      color: #f3f4f6 !important;
      margin-bottom: 0.375rem !important;
    }
    .form-select {
      background-color: #ffffff !important;
      color: #000000 !important;
      border: 1px solid #d1d5db !important;
      border-radius: 0.5rem !important;
      padding: 0.75rem 1rem 0.75rem 2.5rem !important;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
      transition: all 0.2s ease !important;
    }
    .form-select:focus {
      border-color: #ffc107 !important;
      box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25) !important;
      outline: none !important;
    }
    /* Botões */
    .btn-primary {
      background-color: var(--accent-color);
      border-color: var(--accent-color);
      color: var(--text-dark);
      font-weight: 600;
      padding: 10px 25px;
      border-radius: 30px;
      transition: var(--transition);
      animation: pulse 2s infinite;
    }
    .btn-primary:hover {
      background-color: #e0a800;
      border-color: #e0a800;
      transform: translateY(-3px);
      animation: none;
    }

/* Botão verde personalizado */
.btn-green {
  background-color: #2ba304;
  border-color: #2ba304;
  color: white;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 30px;
  transition: var(--transition);
  animation: pulseGreen 2s infinite;
}

.btn-green:hover {
  background-color: #239003;
  border-color: #239003;
  transform: translateY(-3px);
  animation: none;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(43, 163, 4, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(43, 163, 4, 0); }
  100% { box-shadow: 0 0 0 0 rgba(43, 163, 4, 0); }
}

.animate-pulse-green {
  animation: pulseGreen 2s infinite;
}

.animate-pulse-green:hover {
  animation: none;
}

    /* Animações */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .animate-fade-in {
      animation: fadeIn 0.5s ease-out forwards;
    }
    /* Decorações */
    .decoration-dot {
      position: absolute;
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 9999px;
      background-color: var(--accent-color);
      opacity: 0.7;
    }
    /* Efeito de brilho */
    .glow {
      box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
    }
    /* Efeito de gradiente no texto */
    .text-gradient {
      background: linear-gradient(90deg, #ffc107, #ffcd38);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    /* Ajuste para ícones nos inputs */
    .input-icon {
      position: absolute !important;
      top: 50% !important;
      left: 0.75rem !important;
      transform: translateY(-50%) !important;
      color: #6b7280 !important;
      pointer-events: none !important;
    }
    /* Estilo para o badge de pagamento seguro */
    .secure-payment-badge {
      background-color: rgba(16, 185, 129, 0.1) !important;
      border: 1px solid rgba(16, 185, 129, 0.3) !important;
      border-radius: 0.5rem !important;
      padding: 0.75rem !important;
      display: flex !important;
      align-items: center !important;
      margin-top: 1rem !important;
    }
    .secure-payment-badge i {
      color: #10b981 !important;
      margin-right: 0.75rem !important;
    }
    /* Estilo para o logo grande no footer */
    .large-logo-footer {
      width: auto !important;
      height: 80px !important;
      filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2)) !important;
      animation: logoFooterGlow 3s infinite alternate !important;
    }
    @keyframes logoFooterGlow {
      from { filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.2)); }
      to { filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.4)); }
    }
    /* Ajustes responsivos para dispositivos móveis */
    @media (max-width: 640px) {
      .large-logo {
        height: 90px !important;
      }
      .bg-glass {
        border-radius: 1rem !important;
      }
      .form-input, .form-select {
        padding: 0.625rem 1rem 0.625rem 2.25rem !important;
      }
      .secure-payment-badge {
        padding: 0.5rem !important;
        margin-top: 0.75rem !important;
      }
      .large-logo-footer {
        height: 60px !important;
      }
    }
    /* Melhorar a visualização em dispositivos muito pequenos */
    @media (max-width: 360px) {
      .form-label {
        font-size: 0.75rem !important;
      }
      .form-input, .form-select {
        font-size: 0.875rem !important;
      }
      .btn-primary {
        font-size: 0.875rem !important;
        padding: 0.625rem !important;
      }
      .plan-price {
        flex-direction: row;
        align-items: baseline;
      }
      .amount {
        font-size: 28px;
      }
      .plan-features li {
        font-size: 14px;
      }
    }
    /* Ajustes adicionais para espaçamento em dispositivos móveis */
    @media (max-width: 640px) {
      .mb-20 {
        margin-bottom: 2.5rem !important;
      }
      .py-12 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
      }
      .gap-8 {
        gap: 1.5rem !important;
      }
    }
    /* Cor personalizada para os ícones */
    .custom-green-icon {
      color: #2ba304 !important;
    }

/* Nova identidade visual da página pública */
:root {
  --site-ink: #102a43;
  --site-muted: #62758a;
  --site-blue: #176b87;
  --site-blue-dark: #0b3d55;
  --site-green: #20a66a;
  --site-green-dark: #168357;
  --site-line: #dfe9ef;
  --site-soft: #f3f8fa;
}

html { scroll-behavior: smooth; }

.site-body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--site-ink) !important;
  background: #f7fafc !important;
}

.site-orb {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .16;
  pointer-events: none;
}
.site-orb-one { top: -180px; right: -120px; background: #2bc48a; }
.site-orb-two { top: 460px; left: -240px; background: #38a7d3; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(205, 223, 232, .92);
  background: rgba(250, 253, 254, .93);
  box-shadow: 0 10px 32px rgba(16, 42, 67, .08);
  backdrop-filter: blur(18px);
}
.site-header::before { content: ''; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--site-blue-dark), #1688a7 48%, var(--site-green)); }

.site-nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1240px;
}

.site-brand { display: flex; align-items: center; gap: 14px; color: var(--site-ink); font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.site-brand img { width: auto; height: 58px; max-width: 220px; object-fit: contain; }
.site-menu { display: flex; align-items: center; gap: 5px; padding: 6px; border: 1px solid #e0eaef; border-radius: 15px; background: #fff; box-shadow: inset 0 1px 0 #fff, 0 7px 20px rgba(16,42,67,.05); }
.site-menu a { position: relative; padding: 9px 17px; border-radius: 10px; color: #476276; font-size: 14px; font-weight: 600; transition: all .2s ease; }
.site-menu a:hover { color: var(--site-blue-dark); background: #edf6f8; }
.site-menu a::after { content: ''; position: absolute; left: 50%; right: 50%; bottom: 4px; height: 2px; border-radius: 2px; background: var(--site-green); transition: all .2s ease; }
.site-menu a:hover::after { left: 17px; right: 17px; }
.site-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--site-blue-dark);
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--site-blue-dark), var(--site-blue));
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(11, 61, 85, .2);
}
.site-login:hover { border-color: var(--site-green); color: white; background: linear-gradient(135deg, var(--site-blue), var(--site-green-dark)); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(11,61,85,.24); }

.site-page { padding-top: 34px !important; }
.site-page > .container { max-width: 1240px; }

.site-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 60px !important;
  border: 0 !important;
  border-radius: 30px !important;
  color: white;
  background-color: var(--site-blue-dark) !important;
  box-shadow: 0 30px 70px rgba(11, 61, 85, .22) !important;
}
.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(7, 40, 58, .95) 5%, rgba(14, 79, 101, .84) 58%, rgba(21, 131, 102, .58));
}
.site-hero::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  right: -120px;
  bottom: -190px;
  z-index: -1;
  border: 70px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.site-hero .text-center { max-width: 870px; margin-left: auto; margin-right: auto; }
.site-hero h1 { font-size: clamp(2.35rem, 5vw, 4.6rem) !important; line-height: 1.04; letter-spacing: -.045em; }
.site-hero p { max-width: 760px; color: rgba(255,255,255,.78) !important; line-height: 1.75; }
.site-hero .text-accent { color: #75e3b6 !important; }
.site-hero .large-logo { max-width: 260px; object-fit: contain; animation: none !important; filter: drop-shadow(0 10px 25px rgba(0,0,0,.18)) !important; }
.site-hero a { border-radius: 13px !important; }
.site-hero .animate-pulse-green, .site-hero .animate-pulse-blue { animation: none !important; }
.site-hero .bg-customGreen { background: var(--site-green) !important; box-shadow: 0 12px 28px rgba(32,166,106,.3); }
.site-hero .bg-customGreen:hover { background: var(--site-green-dark) !important; }
.site-hero .bg-customAzul { background: #1383aa !important; }

.site-section {
  padding: 70px 42px;
  border: 1px solid var(--site-line);
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 55px rgba(16,42,67,.07);
}
.site-section h2, .final-cta h2 { color: var(--site-ink); letter-spacing: -.025em; }

#recursos { position: relative; overflow: hidden; background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(240,248,249,.94)); }
#recursos::before { content: ''; position: absolute; top: -110px; right: -90px; width: 260px; height: 260px; border: 55px solid rgba(32,166,106,.055); border-radius: 50%; pointer-events: none; }
#recursos > h2 { position: relative; margin-bottom: 46px !important; font-size: clamp(1.9rem, 3vw, 2.65rem) !important; }
#recursos > h2::before { content: 'RECURSOS DO SISTEMA'; display: block; margin-bottom: 10px; color: var(--site-green); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
#recursos > h2::after { content: ''; display: block; width: 54px; height: 4px; margin: 16px auto 0; border-radius: 4px; background: linear-gradient(90deg, var(--site-blue), var(--site-green)); }
#features-container { position: relative; gap: 22px !important; }

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  padding: 28px 28px 26px !important;
  border: 1px solid #e3edf2 !important;
  border-radius: 20px !important;
  color: var(--site-ink);
  text-align: left !important;
  background: linear-gradient(145deg, #fff, #f8fbfc) !important;
  box-shadow: 0 10px 30px rgba(16,42,67,.06);
}
.feature-card::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(180deg, var(--site-blue), var(--site-green)); opacity: 0; transition: opacity .25s ease; }
.feature-card::after { content: ''; position: absolute; inset: auto -35px -45px auto; width: 110px; height: 110px; border-radius: 50%; background: rgba(32,166,106,.07); }
.feature-card:hover { border-color: #b8dfd0 !important; box-shadow: 0 20px 38px rgba(16,42,67,.11); }
.feature-card:hover::before { opacity: 1; }
.feature-card .custom-green-icon { width: 55px; height: 55px; display: inline-grid; place-items: center; margin-bottom: 20px !important; border: 1px solid #d5eee3; border-radius: 15px; color: var(--site-green) !important; background: linear-gradient(145deg, #edfaf4, #e0f3eb); font-size: 24px !important; box-shadow: 0 8px 18px rgba(32,166,106,.09); }
.feature-card h3 { margin-bottom: 9px !important; color: var(--site-ink); font-size: 18px !important; }
.feature-card p { color: var(--site-muted) !important; font-size: 14px; line-height: 1.7; }

.plans-section { background: linear-gradient(160deg, #eef7f8 0%, #fff 48%, #edf8f3 100%); }
.plans-section > p { color: #a15116; }
.plan-card { position: relative; padding-top: 12px; }
.plan-card > .bg-glass {
  position: relative;
  overflow: visible !important;
  border: 1px solid #dce8ed !important;
  border-radius: 22px !important;
  color: var(--site-ink);
  background: #fff !important;
  box-shadow: 0 12px 36px rgba(16,42,67,.08) !important;
}
.plan-card:hover > .bg-glass { border-color: #9bd4bd !important; box-shadow: 0 22px 45px rgba(16,42,67,.14) !important; }
.plan-card-featured > .bg-glass { border: 2px solid var(--site-green) !important; box-shadow: 0 20px 48px rgba(32,166,106,.17) !important; }
.plan-highlight { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); z-index: 2; padding: 7px 14px; border-radius: 999px; white-space: nowrap; color: #fff; background: var(--site-green); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.plan-card .border-gray-700 { border-color: #e5edf1 !important; }
.plan-card .text-gray-400 { color: #728497 !important; }
.plan-card .feature-item { align-items: flex-start; color: #526779; font-size: 14px; }
.plan-card .feature-item i { margin-top: 4px; color: var(--site-green) !important; }
.plan-card .btn-subscribe { border-radius: 13px !important; background: var(--site-green) !important; animation: none !important; box-shadow: 0 9px 22px rgba(32,166,106,.22); }
.plan-card .btn-subscribe:hover { background: var(--site-green-dark) !important; }

.faq-section { position: relative; overflow: hidden; background: linear-gradient(145deg, #fff 35%, #f2f8fa 100%); }
.faq-section::before { content: '?'; position: absolute; top: -72px; left: 30px; color: rgba(23,107,135,.045); font-size: 260px; font-weight: 800; line-height: 1; pointer-events: none; }
.faq-section > h2 { position: relative; margin-bottom: 48px !important; font-size: clamp(1.9rem, 3vw, 2.65rem) !important; }
.faq-section > h2::before { content: 'TIRE SUAS DÚVIDAS'; display: block; margin-bottom: 10px; color: var(--site-green); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.faq-section > h2::after { content: ''; display: block; width: 54px; height: 4px; margin: 16px auto 0; border-radius: 4px; background: linear-gradient(90deg, var(--site-blue), var(--site-green)); }
#faq-container { position: relative; max-width: 930px !important; counter-reset: faq-counter; }
.faq-item { counter-increment: faq-counter; border: 1px solid #dce8ee !important; border-radius: 18px !important; color: var(--site-ink); background: rgba(255,255,255,.94) !important; box-shadow: 0 8px 24px rgba(16,42,67,.055); transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.faq-item:hover { transform: translateY(-2px); border-color: #bddbd2 !important; box-shadow: 0 14px 30px rgba(16,42,67,.09); }
.faq-item.faq-open { border-color: rgba(32,166,106,.48) !important; box-shadow: 0 16px 34px rgba(32,166,106,.1); }
.faq-item button { min-height: 82px; gap: 18px; padding: 16px 20px; }
.faq-question { display: flex; align-items: center; gap: 17px; color: var(--site-ink); font-size: 16px; }
.faq-question::before { content: counter(faq-counter, decimal-leading-zero); flex: 0 0 auto; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: var(--site-blue); background: #edf6f8; font-size: 12px; font-weight: 700; }
.faq-item.faq-open .faq-question::before { color: white; background: linear-gradient(135deg, var(--site-blue), var(--site-green)); }
.faq-toggle { flex: 0 0 auto; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; color: var(--site-blue-dark); background: #f0f6f8; transition: all .25s ease; }
.faq-item button:hover .faq-toggle, .faq-item.faq-open .faq-toggle { color: white; background: var(--site-green); }
.faq-item > div { padding: 22px 25px 24px 79px !important; border-color: #e4edf1 !important; color: var(--site-muted); background: linear-gradient(90deg, #f7fbfa, #f6fafb) !important; line-height: 1.8; }

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 60px 35px !important;
  border: 0 !important;
  border-radius: 28px !important;
  color: var(--site-ink);
  background: linear-gradient(120deg, #e7f7f0, #eef7fb) !important;
  box-shadow: 0 18px 45px rgba(16,42,67,.08) !important;
}
.final-cta p { color: var(--site-muted) !important; }
.final-cta a { border-radius: 13px !important; background: var(--site-green) !important; animation: none !important; }

.site-footer { overflow: hidden; margin-top: 8px; border: 1px solid #dce8ed; border-radius: 28px 28px 0 0; color: #dce9ef; background: linear-gradient(135deg, #092f43, #0d4960 62%, #11604f); box-shadow: 0 -15px 45px rgba(16,42,67,.09); }
.site-footer-main { display: grid; grid-template-columns: 1.35fr .75fr 1fr; gap: 70px; padding: 58px 60px 48px; }
.site-footer-brand .large-logo-footer { width: auto !important; height: 82px !important; max-width: 250px; margin-bottom: 19px; animation: none !important; filter: drop-shadow(0 8px 16px rgba(0,0,0,.18)) !important; object-fit: contain; }
.site-footer-brand p { max-width: 430px; color: rgba(231,242,247,.7); font-size: 14px; line-height: 1.75; }
.site-footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer-links strong { margin-bottom: 6px; color: white; font-size: 14px; }
.site-footer-links a { color: rgba(231,242,247,.72); font-size: 13px; transition: all .2s ease; }
.site-footer-links a:hover { padding-left: 4px; color: #78e0b6; }
.site-footer-access { padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 19px; background: rgba(255,255,255,.07); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.site-footer-kicker { display: block; margin-bottom: 8px; color: #79dfb7; font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.site-footer-access strong { display: block; color: white; font-size: 16px; }
.site-footer-access p { margin: 7px 0 18px; color: rgba(231,242,247,.67); font-size: 12px; line-height: 1.6; }
.site-footer-access a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 15px; border-radius: 10px; color: white; background: var(--site-green); font-size: 12px; font-weight: 600; box-shadow: 0 8px 18px rgba(0,0,0,.13); }
.site-footer-access a:hover { color: white; background: #25b677; transform: translateY(-1px); }
.site-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 60px; border-top: 1px solid rgba(255,255,255,.1); background: rgba(3,25,36,.22); color: rgba(231,242,247,.6); font-size: 11px; }
.site-footer-bottom span { display: inline-flex; align-items: center; gap: 7px; }
.site-footer-bottom i { color: #79dfb7; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 100; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: #25d366; box-shadow: 0 14px 30px rgba(20,120,70,.3); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); }
.whatsapp-float img { width: 48px; height: 48px; object-fit: contain; }

@media (max-width: 767px) {
  .site-nav { min-height: 66px; padding: 0 14px; }
  .site-menu { display: none; }
  .site-brand img { height: 46px; max-width: 170px; }
  .site-login { padding: 9px 14px; }
  .site-page { padding: 20px 12px 30px !important; }
  .site-page > .container { padding: 0 !important; }
  .site-hero { min-height: auto; padding: 48px 20px !important; border-radius: 22px !important; }
  .site-hero h1 { font-size: 2.35rem !important; }
  .site-hero p { font-size: 1rem !important; }
  .site-section { padding: 45px 16px; border-radius: 22px; }
  .feature-card { min-height: auto; }
  .faq-section > h2 { margin-bottom: 32px !important; }
  #faq-container { padding-left: 0 !important; padding-right: 0 !important; }
  .faq-item button { min-height: 72px; padding: 13px 14px; }
  .faq-question { gap: 11px; font-size: 14px; }
  .faq-question::before { width: 36px; height: 36px; border-radius: 10px; }
  .faq-toggle { width: 32px; height: 32px; }
  .faq-item > div { padding: 18px 18px 20px 61px !important; font-size: 14px; }
  .final-cta { padding: 45px 20px !important; border-radius: 22px !important; }
  .site-footer { border-radius: 22px 22px 0 0; }
  .site-footer-main { grid-template-columns: 1fr; gap: 34px; padding: 42px 24px 34px; }
  .site-footer-brand .large-logo-footer { height: 68px !important; max-width: 210px; }
  .site-footer-links { display: grid; grid-template-columns: 1fr 1fr; }
  .site-footer-links strong { grid-column: 1 / -1; }
  .site-footer-bottom { flex-direction: column; align-items: flex-start; padding: 18px 24px; }
  .whatsapp-float { right: 14px; bottom: 15px; width: 54px; height: 54px; }
}




