/*
 * Visual Upgrade — Aposente Aqui
 * Camada de aprimoramento visual sobre o design base existente
 * Mantém identidade: verde #035E32, azul #005C8A, tipografia Inter
 */

/* ============================================================
   1. PRELOADER
   ============================================================ */
#aq-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#aq-preloader.aq-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#aq-preloader .aq-preloader-logo {
  height: 56px;
  width: auto;
  opacity: 0;
  transform: translateY(10px);
  animation: aqLogoIn 0.6s ease 0.2s forwards;
}

#aq-preloader .aq-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid #e8f3d8;
  border-top-color: #035E32;
  border-radius: 50%;
  animation: aqSpin 0.9s linear infinite;
}

@keyframes aqSpin {
  to { transform: rotate(360deg); }
}

@keyframes aqLogoIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   2. STICKY NAVBAR COM GLASSMORPHISM
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.header.aq-nav-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 28px rgba(3, 94, 50, 0.09);
}

.header.aq-nav-scrolled .main-header {
  padding: 14px 0;
}

.header.aq-nav-scrolled .index2-navlink {
  color: #000 !important;
}

/* Underline animado nos links do nav */
.navbar-nav .nav-link {
  position: relative;
}

.navbar-nav li:not(.btn-talk) .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #035E32;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar-nav li:not(.btn-talk) .nav-link:hover::after,
.navbar-nav li.active:not(.btn-talk) .nav-link::after {
  width: 100%;
}

/* Botão do nav mais arredondado e polido */
.home-header-section2 .btn-talk a {
  border-radius: 100px !important;
  font-size: 13px;
  letter-spacing: 0.4px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.home-header-section2 .btn-talk a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 92, 138, 0.25) !important;
}

/* ============================================================
   3. HERO SECTION — MELHORIAS VISUAIS
   ============================================================ */

/* Badge/tag acima do H1 */
.aq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(3, 94, 50, 0.12);
  border: 1px solid rgba(3, 94, 50, 0.25);
  color: #035E32;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(6px);
}

.aq-hero-badge .aq-badge-dot {
  width: 7px;
  height: 7px;
  background: #035E32;
  border-radius: 50%;
  animation: aqPulse 2s ease infinite;
}

@keyframes aqPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Botão do hero com shimmer */
.home-banner-section2 .banner-btn a,
.discover-btn-banner a {
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.home-banner-section2 .banner-btn a:hover,
.discover-btn-banner a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(3, 94, 50, 0.3) !important;
}

.home-banner-section2 .banner-btn a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.home-banner-section2 .banner-btn a:hover::before {
  left: 150%;
}

/* ============================================================
   4. OFFER SECTION — CARDS COM LIFT EFFECT
   ============================================================ */
.offer-section .offer-section-box {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              background 0.3s ease !important;
  overflow: hidden;
}

.offer-section .offer-section-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #b2e968, #035E32);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.offer-section .offer-section-box:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18) !important;
}

.offer-section .offer-section-box:hover::after {
  transform: scaleX(1);
}

.offer-section .offer-section-box .offer-section-inner {
  transition: transform 0.3s ease;
}

.offer-section .offer-section-box:hover .offer-section-inner {
  transform: scale(1.05);
}

/* ============================================================
   5. SENCARE / ABOUT SECTION — MELHORIAS
   ============================================================ */
.sencare-section .sencare-inner {
  background: #fff;
  box-shadow: 0 20px 80px rgba(0, 92, 138, 0.08);
  border-radius: 28px !important;
  overflow: hidden;
}

.sencare-section .sencare-inner .sencare-inner-img {
  border-radius: 0 0 0 28px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

/* Accordion melhorado */
.sencare-section .accordion-card {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid #e8f3d8 !important;
  transition: box-shadow 0.3s ease;
}

.sencare-section .accordion-card:hover {
  box-shadow: 0 6px 24px rgba(3, 94, 50, 0.1);
}

.sencare-section .sencare-inner .btn-link {
  width: 100%;
  text-align: left;
  padding: 14px 18px !important;
  background: linear-gradient(135deg, #f2fafe 0%, #fff 100%) !important;
  border-bottom: none !important;
  transition: background 0.3s ease;
}

.sencare-section .sencare-inner .btn-link[aria-expanded="true"] {
  background: linear-gradient(135deg, #e8f3d8 0%, #f2fafe 100%) !important;
}

.sencare-section .sencare-inner h5 {
  color: #000 !important;
  font-size: 18px !important;
  line-height: 28px !important;
  margin-bottom: 0 !important;
  border: none !important;
  width: auto !important;
}

/* Botão readmore */
.sencare-section .readmore-btn a {
  border-radius: 100px !important;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  font-size: 15px !important;
}

.sencare-section .readmore-btn a:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 28px rgba(3, 94, 50, 0.28) !important;
}

/* ============================================================
   6. SERVICE OFFER SECTION — CARDS HOVER
   ============================================================ */
.service-offer-section .service-inner > .row > [class*="col-"] {
  position: relative;
  transition: transform 0.3s ease;
}

.service-offer-section .service-item-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 28px 20px 24px;
  text-align: center;
  border: 1px solid #eaf4ec;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
}

.service-offer-section .service-item-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(3, 94, 50, 0.12);
  border-color: #b2e968;
}

.service-offer-section .service-item-wrap figure {
  margin-bottom: 20px;
}

.service-offer-section .service-item-wrap .offer-img-content h5 {
  word-spacing: 0 !important;
  font-size: 22px !important;
}

/* ============================================================
   7. COUNTER SECTION — REDESIGN VISUAL
   ============================================================ */
.counter-section {
  background: linear-gradient(135deg, #035E32 0%, #04843f 50%, #035E32 100%) !important;
  position: relative;
  padding: 80px 0 60px !important;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b2e968' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.counter-section .counter-inner-box {
  border: none !important;
  height: auto !important;
  margin: 0 !important;
  padding: 20px 10px;
  text-align: center;
  position: relative;
}

.counter-section .counter-inner-box::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(178, 233, 104, 0.25);
}

.counter-section .col-lg-3:last-child .counter-inner-box::after {
  display: none;
}

/* Número do passo com visual grande e destacado */
.counter-section .counter-inner-box h5 {
  font-size: 52px !important;
  line-height: 52px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 10px !important;
  position: relative;
  display: inline-block;
}

.counter-section .counter-inner-box h5 .aq-counter-bg {
  position: absolute;
  font-size: 120px;
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.04);
  font-family: 'Inter', sans-serif;
  pointer-events: none;
  white-space: nowrap;
}

.counter-section .counter-inner-box p {
  font-size: 15px !important;
  color: rgba(232, 243, 216, 0.9) !important;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Ícone de passo acima do número */
.counter-step-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #b2e968;
  font-size: 20px;
  transition: all 0.3s ease;
}

.counter-section .counter-inner-box:hover .counter-step-icon {
  background: rgba(178, 233, 104, 0.2);
  transform: scale(1.1);
}

/* ============================================================
   8. HAPPY CLIENTS / TESTIMONIALS — MELHORIAS
   ============================================================ */
.happy-clients-section {
  position: relative;
}

.happy-clients-section .carousel-card {
  position: relative;
  box-shadow: 0 16px 60px rgba(0, 92, 138, 0.1) !important;
  border: 1px solid rgba(232, 243, 216, 0.5);
  transition: box-shadow 0.3s ease;
}

/* Aspas decorativas */
.happy-clients-section .carousel-card::before {
  content: '\201C';
  position: absolute;
  top: 60px;
  left: 48px;
  font-size: 80px;
  line-height: 1;
  font-family: 'Inter', sans-serif;
  color: rgba(3, 94, 50, 0.1);
  pointer-events: none;
}

.happy-clients-section .carousel-card .carousel-text {
  font-size: 20px !important;
  line-height: 34px !important;
  color: #333 !important;
  position: relative;
  z-index: 1;
}

/* Estrelas de avaliação */
.aq-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
  text-align: center;
}

.happy-clients-section .about-border {
  background: linear-gradient(90deg, #035E32, #b2e968) !important;
  width: 80px !important;
  left: 50% !important;
  transform: translateX(-50%);
  height: 2px !important;
}

/* ============================================================
   9. BLOGS / QUEM PODE USAR — CARDS MELHORADOS
   ============================================================ */
.blogs-section .chooseus-content-box {
  border-radius: 20px !important;
  border: 1px solid #eaf4ec !important;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  position: relative;
  overflow: hidden;
}

.blogs-section .chooseus-content-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #035E32, #b2e968);
  transition: height 0.35s ease;
  border-radius: 3px 0 0 3px;
}

.blogs-section .chooseus-content-box:hover {
  transform: translateX(6px) !important;
  box-shadow: 0 12px 40px rgba(3, 94, 50, 0.12) !important;
  border-color: #b2e968 !important;
}

.blogs-section .chooseus-content-box:hover::before {
  height: 100%;
}

.blogs-section .blogs-content-box {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  border: 1px solid #e0eef8 !important;
}

.blogs-section .blogs-content-box:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 60px rgba(0, 92, 138, 0.14) !important;
  border-color: #005C8A !important;
}

/* ============================================================
   10. NOVA SEÇÃO CTA — BANNER GRADIENTE
   ============================================================ */
.aq-cta-section {
  background: linear-gradient(135deg, #005C8A 0%, #003d5c 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.aq-cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(178, 233, 104, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.aq-cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(3, 94, 50, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.aq-cta-section .aq-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.aq-cta-section .aq-cta-inner h2 {
  color: #fff !important;
  font-size: 42px;
  line-height: 54px;
  margin-bottom: 16px;
}

.aq-cta-section .aq-cta-inner h2 span {
  color: #b2e968;
}

.aq-cta-section .aq-cta-inner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 30px;
}

.aq-cta-btn {
  display: inline-block;
  background: #035E32;
  color: #fff !important;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 48px;
  border-radius: 100px;
  text-decoration: none !important;
  border: 2px solid #035E32;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.aq-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.aq-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(3, 94, 50, 0.4);
  background: #04843f;
  border-color: #04843f;
  color: #fff !important;
}

.aq-cta-btn:hover::before {
  left: 150%;
}

.aq-cta-btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff !important;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none !important;
  border: 2px solid rgba(255, 255, 255, 0.45);
  transition: all 0.3s ease;
  margin-left: 16px;
}

.aq-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff !important;
}

/* Wrapper flex para alinhar os dois botões */
.aq-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.aq-cta-btns .aq-cta-btn-outline {
  margin-left: 0;
}

/* ============================================================
   11. FOOTER — WAVE SEPARATOR + MELHORIAS
   ============================================================ */
.aq-footer-wave {
  display: block;
  line-height: 0;
  margin-bottom: -2px;
}

.aq-footer-wave svg {
  display: block;
  width: 100%;
}

/* Gradiente padrão para todos os footers */
.footer-section {
  background: linear-gradient(160deg, #005C8A 0%, #003d5c 100%) !important;
}

/* Remove background-image e corrige padding/margem do footer-index-img
   (usado em about, contact e faq) para ficar igual ao index */
.footer-index-img {
  background: linear-gradient(160deg, #005C8A 0%, #003d5c 100%) !important;
  background-image: none !important;
  padding: 88px 0 80px !important;
  margin-top: 0 !important;
}

/* Ajusta cores de texto do footer-index-img para fundo escuro */
.footer-index-img .footer-text {
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer-index-img .footer-heading {
  color: #ffffff !important;
  margin-bottom: 30px !important;
}

.footer-index-img .footer-list-ul a {
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer-index-img .contact-info-heading a {
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer-index-img .footer-list-ul a:hover {
  color: #b2e968 !important;
}

/* Ícones das redes sociais — branco em todos os footers */
.footer-section .social-icons i,
.footer-index-img .social-icons i {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.footer-section .social-icons i:hover,
.footer-index-img .social-icons i:hover {
  background: #ffffff !important;
  color: #005C8A !important;
  border-color: #ffffff !important;
  transform: translateY(-4px) scale(1.1) !important;
}

/* Links de navegação do footer */
.footer-section .footer-list-ul a {
  transition: all 0.2s ease;
  padding-left: 0 !important;
}

.footer-section .footer-list-ul a:hover {
  padding-left: 6px !important;
  color: #b2e968 !important;
}

/* ============================================================
   12. BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.aq-float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: aqFloatIn 0.6s ease 1.5s both;
}

.aq-float-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: aqRipple 2.5s ease infinite;
}

.aq-float-whatsapp:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
  background: #1db954;
}

.aq-float-whatsapp i {
  font-size: 26px;
  color: #fff;
}

@keyframes aqRipple {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

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

/* ============================================================
   13. SECTION LABELS / BADGES GLOBAIS
   ============================================================ */
.aq-section-label {
  display: inline-block;
  background: linear-gradient(135deg, #e8f3d8, #f2fafe);
  color: #035E32;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 18px;
  border-radius: 100px;
  border: 1px solid #b2e968;
  margin-bottom: 20px;
}

/* ============================================================
   14. MELHORIAS GLOBAIS DE ANIMAÇÃO
   ============================================================ */

/* Todos os botões principais com transição suave */
.readmore-btn a,
.discover-btn-banner a,
.banner-btn a {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* Imagens com hover suave */
.offer-section-inner img,
.service-figure-mb img {
  transition: transform 0.4s ease;
}

.offer-section-box:hover .offer-section-inner img {
  transform: scale(1.08) rotate(-1deg);
}

/* Smooth reveal padrão adicional */
[data-aos] {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* ============================================================
   15. WAVE SEPARATORS ENTRE SEÇÕES
   ============================================================ */
.aq-wave-separator {
  display: block;
  line-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.aq-wave-separator svg {
  display: block;
  width: 100%;
}

/* ============================================================
   16. LP — LANDING PAGE (PÁGINA DE VENDAS)
   ============================================================ */

/* Menu Section — cards de funcionalidades */
.menu-section .menu-right-section {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  position: relative;
  overflow: hidden;
  border-radius: 20px !important;
  padding: 36px 24px !important;
}

.menu-section .menu-right-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #035E32, #b2e968);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.menu-section .menu-right-section:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(0, 92, 138, 0.15) !important;
  border-top-color: #035E32 !important;
}

.menu-section .menu-right-section:hover::before {
  transform: scaleX(1);
}

/* Pricing Section — cards de plano */
.pricing-section .pricing-box {
  transition: all 0.3s ease;
  position: relative;
}

.pricing-section .pricing-box-bottom {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* Highlight no card do meio (Trimestral) */
.pricing-section .col-lg-4:nth-child(2) .pricing-box {
  background: linear-gradient(135deg, #005C8A 0%, #003d5c 100%);
  border-color: #005C8A;
}

.pricing-section .col-lg-4:nth-child(2) .pricing-box h5 {
  color: #fff !important;
}

.pricing-section .col-lg-4:nth-child(2) .pricing-box .pricing-text {
  color: #b2e968 !important;
}

.pricing-section .col-lg-4:nth-child(2) .pricing-box .pricing-span {
  color: rgba(255,255,255,0.7) !important;
}

.pricing-section .col-lg-4:nth-child(2) .pricing-box::before {
  content: 'Mais Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #035E32;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-section .pricing-box-bottom:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 50px rgba(3, 94, 50, 0.15) !important;
}

/* Choose-us Section na LP */
.choose-us-section .chooseus-content-box {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  position: relative;
  overflow: hidden;
}

.choose-us-section .chooseus-content-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #035E32, #b2e968);
  transition: height 0.35s ease;
}

.choose-us-section .chooseus-content-box:hover {
  transform: translateX(6px) !important;
  box-shadow: 0 12px 40px rgba(3, 94, 50, 0.12) !important;
}

.choose-us-section .chooseus-content-box:hover::before {
  height: 100%;
}

/* Teams Section */
.Our-teams-section .col-lg-3 figure {
  transition: transform 0.3s ease;
}

.Our-teams-section .col-lg-3:hover figure {
  transform: translateY(-8px) scale(1.03);
}

/* Carousel Section na LP */
.Carousel-Section .carousel-card {
  box-shadow: 0 20px 60px rgba(0, 92, 138, 0.1) !important;
  transition: box-shadow 0.3s ease;
}

.Carousel-Section .carousel-card::before {
  content: '\201C';
  position: absolute;
  top: 50px;
  left: 40px;
  font-size: 80px;
  line-height: 1;
  font-family: 'Inter', sans-serif;
  color: rgba(3, 94, 50, 0.08);
  pointer-events: none;
}

/* Form Section na LP */
.form-section .left-section ul i {
  transition: transform 0.3s ease !important;
}

.form-section .left-section ul li:hover i {
  transform: scale(1.15) !important;
}

.form-section .right-section .form-control {
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  border-radius: 100px !important;
  padding-left: 24px !important;
  padding-right: 48px !important;
}

.form-section .right-section .form-control:focus {
  border-color: #035E32 !important;
  box-shadow: 0 0 0 3px rgba(3, 94, 50, 0.12) !important;
}

/* Counter Section 2 (about.html) */
.counter-section2 {
  background: linear-gradient(135deg, #035E32 0%, #04843f 50%, #035E32 100%) !important;
  position: relative;
  overflow: hidden;
}

.counter-section2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b2e968' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.counter-section2 .counter-inner-box h5 {
  color: #fff !important;
  font-weight: 700 !important;
}

.counter-section2 .counter-inner-box p {
  color: rgba(232, 243, 216, 0.9) !important;
}

/* ============================================================
   18. RESPONSIVO
   ============================================================ */

/* ── Menu mobile moderno (todas as páginas) ── */
@media (max-width: 991px) {
  .navbar-collapse.show {
    background: rgba(0, 60, 100, 0.94) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 18px !important;
    margin-top: 10px !important;
    padding: 10px 8px 18px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
  }

  .navbar-collapse .navbar-nav .nav-item:not(.btn-talk) .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    padding: 10px 18px !important;
    border-radius: 10px !important;
    transition: background 0.2s ease !important;
  }

  .navbar-collapse .navbar-nav .nav-item:not(.btn-talk) .nav-link:hover,
  .navbar-collapse .navbar-nav .nav-item.active:not(.btn-talk) .nav-link {
    background: rgba(255, 255, 255, 0.10) !important;
    color: #fff !important;
  }

  /* Remove underline animado no mobile */
  .navbar-collapse .navbar-nav li:not(.btn-talk) .nav-link::after {
    display: none !important;
  }

  /* Botão "Fale / Começar agora" no menu mobile */
  .navbar-collapse .navbar-nav .btn-talk {
    padding: 6px 10px 0 !important;
  }

  .navbar-collapse .navbar-nav .btn-talk a {
    display: block !important;
    background: rgba(3, 94, 50, 0.85) !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    color: #fff !important;
    border-radius: 100px !important;
    padding: 11px 24px !important;
    text-align: center !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    transition: background 0.25s ease !important;
    margin: 0 !important;
  }

  .navbar-collapse .navbar-nav .btn-talk a:hover {
    background: rgba(3, 94, 50, 1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
}

@media (max-width: 991px) {
  .aq-cta-section {
    padding: 70px 20px;
  }

  .aq-cta-section .aq-cta-inner h2 {
    font-size: 32px;
    line-height: 44px;
  }

  .counter-section .counter-inner-box::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .aq-cta-section .aq-cta-inner h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .aq-float-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .aq-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .aq-cta-btns .aq-cta-btn,
  .aq-cta-btns .aq-cta-btn-outline {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .counter-section .counter-inner-box h5 {
    font-size: 38px !important;
  }

  .service-offer-section .service-item-wrap {
    margin-bottom: 16px;
  }
}

/* ============================================================
   19. HOVER DOS CARDS — ABOUT/CONTACT (azul + texto branco)
   ============================================================ */
.about-offer-section .offer-section-box:hover,
.contact-offer-section .offer-section-box:hover {
  background: #005C8A !important;
}

.about-offer-section .offer-section-box:hover h5,
.about-offer-section .offer-section-box:hover p,
.contact-offer-section .offer-section-box:hover h5,
.contact-offer-section .offer-section-box:hover p {
  color: #fff !important;
}

.about-offer-section .offer-section-box:hover .offer-section-inner,
.contact-offer-section .offer-section-box:hover .offer-section-inner {
  background: rgba(255,255,255,0.15) !important;
}

.contact-offer-section .offer-section-box:hover .offer-section-inner i {
  color: #fff !important;
  border-color: rgba(255,255,255,0.4) !important;
}

/* ============================================================
   20. LP — BOTÃO "COMEÇAR AGORA" VISÍVEL SOBRE BANNER ESCURO
   ============================================================ */
/* Estado inicial (não-scrollado): fundo semitransparente + borda branca */
.home-header-section:not(.sub-header-section) .header:not(.aq-nav-scrolled) .btn-talk .contact {
  background: rgba(255,255,255,0.15) !important;
  border: 2px solid rgba(255,255,255,0.85) !important;
  color: #fff !important;
  border-radius: 100px !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Após scroll (nav azul) — verde sólido + arredondado */
.home-header-section .header.aq-nav-scrolled .btn-talk .contact {
  background: #035E32 !important;
  border-color: #035E32 !important;
  color: #fff !important;
  border-radius: 100px !important;
}

/* Hover — muda para azul em qualquer estado */
.home-header-section .btn-talk .contact:hover {
  background: #005C8A !important;
  border-color: #005C8A !important;
  color: #fff !important;
  border-radius: 100px !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 92, 138, 0.35) !important;
}

/* ============================================================
   21. LP — STICKY HEADER AZUL AO SCROLLAR
   ============================================================ */
/* Somente na LP (não é home-header-section2, não é sub-header-section) */
.home-header-section:not(.home-header-section2):not(.sub-header-section) .header.aq-nav-scrolled {
  background: rgba(0, 92, 138, 0.97) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.18) !important;
}

/* Links do nav ficam brancos no header azul */
.home-header-section:not(.home-header-section2):not(.sub-header-section) .header.aq-nav-scrolled .nav-link {
  color: #fff !important;
}

/* Botão "COMEÇAR AGORA" volta ao verde sólido sobre fundo azul */
.home-header-section:not(.home-header-section2):not(.sub-header-section) .header.aq-nav-scrolled .btn-talk .contact {
  background: #035E32 !important;
  border-color: #035E32 !important;
  color: #fff !important;
}

/* ============================================================
   22. LP — BADGE "PLATAFORMA PREVIDENCIÁRIA DIGITAL" VISÍVEL
   ============================================================ */
/* No banner da LP (sem home-banner-section2), texto e borda brancos */
.home-banner-section:not(.home-banner-section2) .aq-hero-badge {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #fff !important;
}

.home-banner-section:not(.home-banner-section2) .aq-hero-badge .aq-badge-dot {
  background: #b2e968 !important;
}

/* ============================================================
   23. LP MOBILE — BOTÃO "COMEÇAR AGORA" AO LADO DA LOGO
   ============================================================ */
@media (max-width: 991px) {
  .home-header-section .btn-talk .contact {
    padding: 10px 20px !important;
    font-size: 12px !important;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }

  .home-header-section .btn-talk .contact:hover {
    background: #005C8A !important;
    border-color: #005C8A !important;
    transform: none;
    box-shadow: none !important;
  }
}

/* ============================================================
   24. TIPOGRAFIA INTER — PESOS
   ============================================================ */
h1 { font-weight: 800; }
h2 { font-weight: 700; }
h5, h6 { font-weight: 600; }
p { font-weight: 400; }
.aq-section-label { font-weight: 500; }
.banner-btn a,
.discover-btn-banner a,
.popup-btn a { font-weight: 600; }

/* ============================================================
   25. CLASSES DE CARDS E UTILITÁRIOS — BLOCO 4
   ============================================================ */

/* Cards de recurso (about.html - "O que você encontra") */
.aq-resource-card {
  background: #f2fafe;
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: start;
}
.aq-resource-card i {
  grid-column: 1;
  grid-row: 1 / 3;
  color: #035E32;
  font-size: 28px;
  margin-bottom: 0;
  padding-top: 4px;
  display: block;
}
.aq-resource-card h5 {
  grid-column: 2;
  grid-row: 1;
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
}
.aq-resource-card p {
  grid-column: 2;
  grid-row: 2;
  color: #555;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Seção Acesso (about.html) — não deve herdar o margin-top negativo do .about-offer-section */
.aq-acesso-section {
  margin-top: 0 !important;
}

/* Cards de canal (about.html - "Onde encontrar" / canais de plataforma) */
.aq-channel-card {
  background: #fff;
  border: 1px solid #e8f0fe;
  border-radius: 12px;
  padding: 28px 16px;
  text-align: center;
  height: 100%;
}
.aq-channel-card i {
  color: #035E32;
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}
.aq-channel-card h6 {
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
}
.aq-channel-card p {
  color: #555;
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

/* Box informativo (index.html - BPC/LOAS) */
.aq-info-box {
  background: #f2fafe;
  border-radius: 10px;
  padding: 20px 24px;
  display: inline-block;
  max-width: 600px;
}
.aq-info-box p {
  margin: 0;
  color: #333;
}

/* Cards de diferenciais sobre fundo escuro (about.html) */
.aq-diff-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.aq-diff-card-icon {
  color: #7EE8A2;
  font-size: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}
.aq-diff-card-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}
.aq-diff-card-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin: 0;
}

/* Textos utilitários */
.aq-text-secondary { color: #555; font-size: 14px; line-height: 1.6; margin: 0; }
.aq-text-white { color: #fff !important; }
.aq-text-white-75 { color: rgba(255, 255, 255, 0.75); }
.aq-section-label-light { background: rgba(255, 255, 255, 0.2) !important; color: #fff !important; }

/* Cards de tipos de aposentadoria (index.html) */
.aq-type-card {
  border: 1px solid #e0f0e8;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  height: 100%;
}
.aq-type-card i {
  color: #035E32;
  font-size: 26px;
  display: block;
  margin-bottom: 10px;
}
.aq-type-card h6 {
  font-weight: 700;
  color: #035E32;
  margin-bottom: 6px;
}
.aq-type-card p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* Suporte a ícones dentro de offer-section-inner */
.offer-section-inner i {
  font-size: 32px;
  color: #035E32;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Padronização de ícones na seção de contato */
.contact-offer-section .offer-section-inner i {
  font-size: 32px;
  color: #035E32;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

/* ============================================================
   26. SEÇÃO CTA — LANDING PAGE
   ============================================================ */
.aq-cta-section {
  background: linear-gradient(135deg, #035E32 0%, #047a43 100%);
  padding: 80px 0;
}
.aq-cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.aq-cta-inner h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}
.aq-cta-inner h2 span {
  color: #7EE8A2;
}
.aq-cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.aq-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.aq-cta-btn {
  background: #fff;
  color: #035E32 !important;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.aq-cta-btn:hover {
  background: #7EE8A2;
  color: #035E32 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   27. MOBILE — CORREÇÕES DE OVERLAP ENTRE SEÇÕES
   ============================================================ */
@media (max-width: 767px) {
  /* Issues 1 & 4: reseta margens negativas herdadas das queries de desktop */
  .about-offer-section {
    padding: 40px 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0;
  }
  .offer-section1 {
    margin-top: 0 !important;
  }
  .contact-offer-section {
    padding-top: 40px !important;
    margin-top: 20px;
  }
  .sub-banner {
    padding-bottom: 40px !important;
  }
  .aq-wave-separator svg {
    height: 32px;
    min-height: 32px;
  }

  /* Issue 2: título da seção popup não fica colado na wave separadora */
  .popup-section {
    padding-top: 40px !important;
  }

  /* Issue 3: ajuste fino do card de Recursos em mobile (grid já definido globalmente) */
  .aq-resource-card {
    padding: 20px 16px;
    column-gap: 12px;
  }
}
