/* =========================================================
   FERNANDO SANTILINO CRÉDITO — style.css
   60-30-10 UI/UX DESIGN PATTERN + RESPONSIVE GRID
   ========================================================= */

:root {
  --c-blue:        #02388C; 
  --c-green:       #73C032; 
  --c-white:       #FFFFFF; 
  
  --c-blue-dark:   #012053; 
  --c-blue-light:  rgba(2, 56, 140, 0.06);
  --c-green-dark:  #5D9E26;
  --c-green-light: rgba(115, 192, 50, 0.15);
  
  --c-white-alpha: rgba(255, 255, 255, 0.75);
  --gray-200:      #E5E7EB;
  --gray-600:      #4B5563;
  --gray-800:      #1F2937;
  
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  
  --shadow-sm:     0 1px 4px rgba(0,0,0,.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,.15);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.25);
  --shadow-glow:   0 6px 30px rgba(115, 192, 50, 0.35);
  
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:     'Montserrat', sans-serif;
  --font-body:     'Nunito', sans-serif;
}

/* Transição suave de entrada das páginas */
body {
  animation: fadeInPage 0.6s ease-in-out forwards;
  opacity: 0; 
}
@keyframes fadeInPage {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Evita barra horizontal sem quebrar as animações do AOS */
html, body {
  max-width: 100%;
  overflow-x: clip; 
}

body {
  font-family: var(--font-body);
  color: var(--c-white);
  background: var(--c-blue);
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img, iframe { max-width: 100%; height: auto; display: block; }

/* ---- TOPBAR ---- */
.topbar { background: var(--c-blue-dark); color: var(--c-white); font-size: .8rem; padding: 7px 0; }
.topbar-link { color: var(--c-white-alpha); transition: color var(--transition); }
.topbar-link:hover { color: var(--c-green); }
.topbar-wpp { background: var(--c-green); color: var(--c-white); padding: 4px 12px; border-radius: 20px; font-weight: 700; font-size: .8rem; transition: background var(--transition); }
.topbar-wpp:hover { background: var(--c-green-dark); }

/* ---- NAVBAR (TRANSIÇÃO SUPER SUAVE) ---- */
#mainNav { 
  background: #0A4EBF; 
  box-shadow: 0 4px 16px rgba(0,0,0,.15); 
  padding: 18px 0; 
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Deixado mais suave */
}
#mainNav.scrolled { 
  padding: 8px 0; 
  background: rgba(10, 78, 191, 0.95); 
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.custom-logo { width: 55px; height: auto; object-fit: contain; }
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-main { font-family: var(--font-head); font-weight: 800; font-size: .95rem; color: var(--c-white); letter-spacing: -.3px; }
.brand-sub { font-size: .65rem; font-weight: 800; color: var(--c-green); letter-spacing: 2px; }

.nav-link { font-weight: 600; color: var(--c-white) !important; font-size: .9rem; padding: 8px 12px !important; border-radius: var(--radius-sm); transition: all var(--transition); }
.nav-link:hover { color: var(--c-green) !important; background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--c-green) !important; background: rgba(115, 192, 50, 0.1); font-weight: 800; }

.btn-nav-cta { background: var(--c-green); color: var(--c-white) !important; font-weight: 800; font-size: .88rem; padding: 9px 20px; border-radius: 50px; transition: all var(--transition); box-shadow: var(--shadow-glow); }
.btn-nav-cta:hover { background: var(--c-green-dark); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(115, 192, 50, 0.45); }
.navbar-toggler { border: 1px solid var(--c-white-alpha); padding: 6px; background: var(--c-white); }
.navbar-toggler:focus { box-shadow: none; }

/* ---- HERO SECTION ---- */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg-swiper { position: absolute !important; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-slide-img { width: 100%; height: 100%; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(2, 56, 140, 0.95) 0%, rgba(1, 33, 84, 0.85) 60%, rgba(115, 192, 50, 0.35) 100%); z-index: 1; }
.hero-content { min-height: calc(100vh - 80px); padding: 100px 0 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--c-white); color: var(--c-blue); font-size: .8rem; font-weight: 800; padding: 6px 14px; border-radius: 50px; letter-spacing: .5px; }

.hero-text-swiper { width: 100%; overflow: visible; }
.text-slide { opacity: 0 !important; transition: opacity 0.5s ease; }
.text-slide.swiper-slide-active { opacity: 1 !important; }
.hero-title { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--c-white); font-weight: 900; margin-bottom: 18px; line-height: 1.1; }
.hero-highlight { color: var(--c-green); position: relative; }
.hero-subtitle { color: var(--c-white-alpha); font-size: 1.05rem; max-width: 520px; margin-bottom: 10px; }
.hero-pagination { bottom: 0 !important; display: flex; justify-content: flex-start; }
.hero-pagination .swiper-pagination-bullet { background: var(--c-white-alpha); width: 12px; height: 4px; border-radius: 4px; transition: all var(--transition); }
.hero-pagination .swiper-pagination-bullet-active { background: var(--c-green); width: 24px; }
.hero-pills span { background: var(--c-white); color: var(--c-blue); font-size: .8rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; }
.hero-pills span i { color: var(--c-green); margin-right: 5px; }

.btn-hero-primary { background: var(--c-green); color: var(--c-white); font-weight: 800; font-size: .95rem; padding: 13px 28px; border-radius: 50px; transition: all var(--transition); box-shadow: var(--shadow-glow); }
.btn-hero-primary:hover { background: var(--c-green-dark); color: var(--c-white); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(115, 192, 50, 0.45); }
.btn-hero-secondary { background: transparent; color: var(--c-white); border: 2px solid var(--c-white); font-weight: 700; font-size: .95rem; padding: 13px 28px; border-radius: 50px; transition: all var(--transition); }
.btn-hero-secondary:hover { background: var(--c-white); color: var(--c-blue); }

.hero-card { background: var(--c-white); border-radius: var(--radius-xl); padding: 30px 26px; box-shadow: 0 20px 60px rgba(0,0,0,.3); position: relative; z-index: 10; animation: cardFloat 4s ease-in-out infinite; }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; color: var(--c-green); }
.hero-card-header i { font-size: 1.3rem; }
.hero-card-header span { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--c-blue); }
.hero-card-subtitle { color: var(--gray-600); font-size: .85rem; margin-bottom: 16px; }
.hero-product-btn { display: flex; align-items: center; gap: 12px; background: var(--c-blue-light); border: 2px solid transparent; border-radius: var(--radius-md); padding: 14px 16px; cursor: pointer; transition: all var(--transition); margin-bottom: 12px; text-decoration: none; }
.hero-product-btn:hover { border-color: var(--c-green); background: var(--c-green-light); transform: translateX(4px); }
.hpb-icon { width: 44px; height: 44px; background: var(--c-green); color: var(--c-white); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.hpb-info { flex: 1; }
.hpb-info strong { display: block; font-family: var(--font-head); font-size: .88rem; font-weight: 800; color: var(--c-blue); }
.hpb-info small { font-size: .75rem; color: var(--gray-600); }
.hero-product-btn .fa-arrow-right { color: var(--c-blue); font-size: .85rem; }
.hero-card-footer { text-align: center; font-size: .75rem; color: var(--gray-600); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--gray-200); }
.hero-card-footer i { margin-right: 4px; color: var(--c-green); }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 2; }
.hero-wave svg { width: 100%; display: block; }

.swiper-button-next, .swiper-button-prev { background-color: var(--c-white); color: var(--c-green) !important; width: 45px !important; height: 45px !important; border-radius: 50%; box-shadow: var(--shadow-md); transition: all var(--transition); }
.swiper-button-next:hover, .swiper-button-prev:hover { background-color: var(--c-green); color: var(--c-white) !important; transform: scale(1.1); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.2rem !important; font-weight: 900; }
.hero-nav-prev { left: 20px; }
.hero-nav-next { right: 20px; }
.banks-nav-prev { left: -10px; }
.banks-nav-next { right: -10px; }

/* ---- STATS BAR ---- */
.stats-bar { background: linear-gradient(135deg, var(--c-blue-dark) 0%, var(--c-blue) 100%); padding: 28px 0; border-bottom: 2px solid var(--c-green); }
.stat-item { padding: 14px 10px; border-right: 1px solid var(--c-white-alpha); }
.stat-item:last-child { border-right: none; }
.stat-number, .stat-num-static { font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; color: var(--c-green); line-height: 1; margin-bottom: 4px; }
.stat-number span { font-size: 1.4rem; }
.stat-label { font-size: .78rem; color: var(--c-white); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }

/* ---- SECTION COMMONS ---- */
.section-tag { display: inline-block; background: var(--c-green); color: var(--c-white); font-size: .78rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 12px; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.3rem); color: var(--c-white); margin-bottom: 10px; }
.section-subtitle { font-size: 1rem; color: var(--c-white-alpha); max-width: 540px; margin: 0 auto; }

/* ---- PRODUCTS SECTION ---- */
.section-products { background: var(--c-blue); }
.product-card { background: var(--c-white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column; transition: transform var(--transition), box-shadow var(--transition); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-top { display: flex; align-items: center; gap: 14px; padding: 24px 24px 18px; }
.product-icon-wrap { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--c-white); flex-shrink: 0; background: var(--c-blue); }
.product-name { font-size: 1.25rem; font-weight: 800; color: var(--c-blue); margin: 0 0 2px; }
.product-tag { font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-600); }
.product-img-wrap { position: relative; }
.product-img { width: 100%; height: 220px; object-fit: cover; background-color: var(--c-blue-light); }
.product-img-badge { position: absolute; bottom: 12px; right: 12px; background: var(--c-green); color: var(--c-white); padding: 8px 14px; border-radius: var(--radius-md); text-align: center; line-height: 1.2; box-shadow: var(--shadow-glow); }
.clt-badge { background: var(--c-blue); color: var(--c-white); box-shadow: 0 4px 16px rgba(2,56,140,.3); }
.product-img-badge span { font-size: .65rem; display: block; opacity: .85; }
.product-img-badge strong { font-family: var(--font-head); font-size: .95rem; }
.product-body { padding: 20px 24px 0; }
.product-section-title { font-size: .85rem; font-weight: 800; color: var(--c-blue); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; }
.product-section-title i { margin-right: 6px; color: var(--c-green); }
.product-features { list-style: none; padding: 0; margin: 0; }
.product-features li { display: flex; align-items: flex-start; gap: 8px; font-size: .875rem; color: var(--gray-800); padding: 5px 0; border-bottom: 1px solid var(--gray-200); }
.product-features li:last-child { border-bottom: none; }
.product-features li i { color: var(--c-green); margin-top: 2px; flex-shrink: 0; }
.product-requisites { list-style: none; padding: 0; margin: 0; }
.product-requisites li { display: flex; gap: 8px; font-size: .85rem; color: var(--gray-600); padding: 4px 0; }
.product-requisites li i { color: var(--c-blue); font-size: .7rem; margin-top: 5px; flex-shrink: 0; }
.product-summary-box { background: var(--c-blue-light); border-radius: var(--radius-md); padding: 18px; margin-top: 14px; border-left: 4px solid var(--c-green); }
.clt-summary { border-left: 4px solid var(--c-blue); background: rgba(2, 56, 140, 0.04); }
.product-summary-box h5 { font-size: .85rem; font-weight: 800; color: var(--c-blue); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 8px; }
.product-summary-box p { font-size: .85rem; color: var(--gray-800); margin: 0; line-height: 1.5; }
.product-summary-box p strong { color: var(--c-blue); font-weight: 800; }
.clt-summary h5 { color: var(--c-blue); }
.btn-product-cta { display: block; text-align: center; background: var(--c-green); color: var(--c-white); font-weight: 800; font-size: .95rem; padding: 16px 24px; margin: 20px 24px 24px; border-radius: 50px; transition: all var(--transition); box-shadow: var(--shadow-glow); }
.btn-product-cta:hover { background: var(--c-green-dark); color: var(--c-white); transform: translateY(-2px); }
.clt-cta { background: var(--c-blue); box-shadow: 0 4px 20px rgba(2,56,140,.28); }
.clt-cta:hover { background: var(--c-blue-dark); box-shadow: 0 8px 30px rgba(2,56,140,.38); }

/* ---- HOW IT WORKS ---- */
.section-how { background: var(--c-blue); position: relative; overflow: hidden; }
.section-how::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, var(--c-green-light) 0%, transparent 70%); pointer-events: none; }

.step-card { background: var(--c-white); border: 1px solid var(--c-blue-light); border-radius: var(--radius-lg); padding: 24px; text-align: center; transition: all var(--transition); position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 260px; }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-icon-wrap { width: 64px; height: 64px; background: var(--c-green); color: var(--c-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 16px; box-shadow: var(--shadow-glow); }
.step-card h5 { color: var(--c-blue); font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.step-card p { color: var(--gray-600); font-size: .85rem; margin: 0; line-height: 1.4; }

.btn-cta-how { background: var(--c-green); color: var(--c-white); font-weight: 800; font-size: 1rem; padding: 15px 36px; border-radius: 50px; transition: all var(--transition); box-shadow: var(--shadow-glow); display: inline-flex; align-items: center; }
.btn-cta-how:hover { background: var(--c-green-dark); color: var(--c-white); transform: translateY(-2px); }

/* ---- BANKS SECTION ---- */
.section-banks { background: var(--c-blue); }
.banks-swiper { padding-bottom: 40px !important; }
.bank-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 22px 16px; background: var(--c-white); border-radius: var(--radius-lg); text-align: center; transition: all var(--transition); }
.bank-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border: 1px solid var(--c-green); }
.bank-logo-img { width: 100%; max-width: 110px; height: 45px; object-fit: contain; margin-bottom: 5px; }
.swiper-pagination-bullet { background: var(--c-white-alpha); }
.swiper-pagination-bullet-active { background: var(--c-green); }

/* ---- ABOUT SECTION ---- */
.section-about { background: var(--c-blue); }
.about-img-wrapper { position: relative; border-radius: var(--radius-xl); overflow: visible; }
.about-img { width: 100%; height: auto; min-height: 350px; max-height: 480px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.about-float-badge { position: absolute; bottom: 20px; right: -20px; background: var(--c-white); border-radius: var(--radius-md); padding: 14px 18px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); }
.about-float-badge i { font-size: 1.5rem; color: var(--c-green); }
.about-float-badge strong { display: block; font-family: var(--font-head); font-size: .85rem; color: var(--c-blue); }
.about-float-badge span { font-size: .72rem; color: var(--gray-600); }
.about-experience-badge { position: absolute; top: 20px; left: -18px; background: var(--c-green); color: var(--c-white); border-radius: var(--radius-md); padding: 12px 16px; text-align: center; box-shadow: var(--shadow-glow); }
.about-experience-badge strong { display: block; font-family: var(--font-head); font-size: 1.4rem; font-weight: 900; line-height: 1; }
.about-experience-badge span { font-size: .65rem; font-weight: 700; }
.about-text { color: var(--c-white-alpha); margin-bottom: 14px; font-size: .95rem; }
.about-feats { margin-top: 4px; }
.about-feat-item { display: flex; align-items: center; gap: 10px; background: var(--c-white); border-radius: var(--radius-md); padding: 12px 14px; font-size: .83rem; font-weight: 700; color: var(--c-blue); }
.about-feat-item i { color: var(--c-green); font-size: 1rem; flex-shrink: 0; }
.btn-cta { background: var(--c-green); color: var(--c-white); font-weight: 800; padding: 12px 26px; border-radius: 50px; transition: all var(--transition); box-shadow: var(--shadow-glow); display: inline-flex; align-items: center; }
.btn-cta:hover { background: var(--c-green-dark); transform: translateY(-2px); }
.btn-outline-about { background: transparent; color: var(--c-white); border: 2px solid var(--c-white); font-weight: 800; padding: 12px 24px; border-radius: 50px; transition: all var(--transition); display: inline-flex; align-items: center; }
.btn-outline-about:hover { background: var(--c-white); color: var(--c-blue); }

/* ---- CTA BANNER ---- */
.cta-banner { background: var(--c-green); padding: 50px 0; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-banner-text h2 { color: var(--c-white); font-size: clamp(1.4rem, 3vw, 2rem); margin: 0 0 4px; font-weight: 900; }
.cta-banner-text p { color: var(--c-blue-dark); margin: 0; font-weight: 800; }
.btn-cta-banner { background: var(--c-blue); color: var(--c-white); font-weight: 800; font-size: 1rem; padding: 14px 32px; border-radius: 50px; transition: all var(--transition); white-space: nowrap; display: inline-flex; align-items: center; }
.btn-cta-banner:hover { background: var(--c-blue-dark); color: var(--c-white); transform: translateY(-2px); }

/* ---- TESTIMONIALS ---- */
/* ---- TESTIMONIALS ---- */
.section-testimonials { background: var(--c-blue); }

.testimonial-card { 
  background: var(--c-white); 
  border-radius: var(--radius-lg); 
  padding: 24px; 
  height: 100%; 
  transition: all var(--transition); 
  /* Adicionado Flexbox para empurrar o autor para a base */
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover { box-shadow: var(--shadow-glow); transform: translateY(-3px); }
.featured-testimonial { border: 2px solid var(--c-green); }
.testimonial-stars { color: var(--c-green); margin-bottom: 12px; }

/* Adicionado flex-grow para o texto preencher o espaço livre */
.testimonial-card p { 
  font-size: .9rem; 
  color: var(--gray-600); 
  margin-bottom: 24px; /* Aumentado o espaço entre o texto e o autor */
  font-style: italic; 
  flex-grow: 1; 
}

/* Adicionado margin-top: auto para empurrar o autor para baixo */
.testimonial-author { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  margin-top: auto; 
}

/* Restante igual... */
.testimonial-avatar { width: 40px; height: 40px; background: var(--c-blue); color: var(--c-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: .8rem; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testimonial-author strong { display: block; font-size: .88rem; color: var(--c-blue); }
.testimonial-author span { font-size: .75rem; color: var(--gray-600); }

/* ---- FAQ SECTION (COM ANIMAÇÕES SUAVES) ---- */
.section-faq { background: var(--c-blue); }
.faq-category-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.faq-cat-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; background: var(--c-green); color: var(--c-white); }
.faq-category-header h4 { font-size: 1.15rem; font-weight: 800; color: var(--c-white); margin: 0; }
.faq-accordion .accordion-item { border: none; border-radius: var(--radius-md) !important; margin-bottom: 8px; overflow: hidden; }
.faq-accordion .accordion-button { font-family: var(--font-body); font-weight: 800; font-size: .88rem; color: var(--c-blue); background: var(--c-white); padding: 14px 16px; border-radius: var(--radius-md) !important; transition: all 0.4s ease; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--c-white); background: var(--c-green); box-shadow: none; }
.faq-accordion .accordion-button::after { filter: none; transition: transform 0.4s ease; }
.faq-accordion .accordion-button:not(.collapsed)::after { filter: none; transform: rotate(-180deg); }
.faq-accordion .accordion-body { font-size: .875rem; color: var(--gray-600); padding: 12px 16px 16px; background: var(--c-white); border-top: 1px solid var(--gray-200); }
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-cta-box { background: var(--c-white); border-radius: var(--radius-md); padding: 18px; text-align: center; }
.faq-cta-box p { font-size: .85rem; color: var(--gray-600); margin-bottom: 10px; }
.btn-faq-cta { background: var(--c-blue); color: var(--c-white); font-weight: 800; font-size: .88rem; padding: 10px 22px; border-radius: 50px; transition: all var(--transition); display: inline-flex; align-items: center; }
.btn-faq-cta:hover { background: var(--c-blue-dark); color: var(--c-white); }

/* Ajuste de suavidade na abertura do FAQ */
.collapsing { transition: height 0.5s ease-in-out !important; }
.accordion-body { opacity: 0; transition: opacity 0.5s ease-in-out; }
.collapse.show .accordion-body { opacity: 1; }

/* ---- CONTACT SECTION ---- */
.section-contact { background: var(--c-blue); }
.contact-card { background: var(--c-white); border-radius: var(--radius-xl); padding: 26px; display: flex; flex-direction: column; gap: 0; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--gray-200); }
.contact-info-item:last-of-type { border-bottom: none; margin-bottom: auto; }
.ci-icon { width: 38px; height: 38px; background: var(--c-blue-light); color: var(--c-blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.wpp-icon { background: var(--c-green-light); color: var(--c-green); }
.contact-info-item strong { display: block; font-size: .82rem; font-weight: 800; color: var(--c-blue); margin-bottom: 2px; text-transform: uppercase; letter-spacing: .5px; }
.contact-info-item p { font-size: .85rem; color: var(--gray-600); margin: 0; line-height: 1.5; }
.contact-link { color: var(--c-green); font-weight: 700; transition: color var(--transition); }
.contact-link:hover { color: var(--c-green-dark); }
.btn-contact-cta { background: var(--c-green); color: var(--c-white); font-weight: 800; padding: 13px; border-radius: 50px; transition: all var(--transition); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-glow); margin-top: 14px; }
.btn-contact-cta:hover { background: var(--c-green-dark); color: var(--c-white); transform: translateY(-2px); }
.map-wrapper { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-wrapper iframe { display: block; }

/* ---- FOOTER & BADGE ---- */
.site-footer { background: var(--c-blue-dark); color: var(--c-white); padding: 56px 0 0; }
.site-footer .brand-logo { background: var(--c-white); color: var(--c-blue); }
.site-footer .brand-main { color: var(--c-white); }
.site-footer .brand-sub { color: var(--c-green); }
.footer-desc { font-size: .84rem; color: var(--c-white-alpha); line-height: 1.7; max-width: 320px; }
.footer-cnpj { font-size: .76rem; color: rgba(255,255,255,.45); margin-top: 10px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,.08); color: var(--c-white); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all var(--transition); }
.footer-social a:hover { background: var(--c-green); }

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-title { font-size: .78rem; font-weight: 800; color: var(--c-white); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 0; margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: .84rem; color: var(--c-white-alpha); transition: color var(--transition); }
.footer-links a:hover { color: var(--c-green); }
.footer-legal-text { font-size: .76rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badges span { background: rgba(255,255,255,.07); color: rgba(255,255,255,.6); font-size: .72rem; font-weight: 700; padding: 5px 10px; border-radius: 6px; }
.footer-divider { border-color: rgba(255,255,255,.08); margin: 0; }
.footer-bottom { padding: 18px 0; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-policy-link { font-size: .78rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-policy-link:hover { color: var(--c-green); }

.group-badge { display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 8px; background: var(--c-blue-dark); border: 1px solid var(--c-green); padding: 10px 24px; border-radius: 50px; color: var(--c-white); font-size: 0.9rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.text-green { color: var(--c-green) !important; }

/* ---- MODALS ---- */
.policy-body h6 { font-weight: 800; color: var(--c-blue); margin: 16px 0 6px; }
.policy-body p { font-size: .87rem; color: var(--gray-600); margin-bottom: 10px; }
.modal-content { background: var(--c-white); color: var(--gray-900); }
.modal-header .modal-title { color: var(--c-blue); font-weight: 800; }

/* ---- FLOATING WHATSAPP ---- */
.wpp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 58px; height: 58px; background: var(--c-green); color: var(--c-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: var(--shadow-glow); transition: all var(--transition); animation: wppPulse 3s ease infinite; }
.wpp-float:hover { background: var(--c-green-dark); color: var(--c-white); transform: scale(1.08); }
@keyframes wppPulse { 0%,100% { box-shadow: 0 6px 24px rgba(115, 192, 50, 0.45); } 50% { box-shadow: 0 6px 36px rgba(115, 192, 50, 0.7); } }
.wpp-float-tooltip { position: absolute; right: 70px; top: 50%; transform: translateY(-50%); background: var(--c-blue); color: #fff; font-size: .78rem; font-weight: 700; padding: 6px 12px; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.wpp-float-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--c-blue); border-right: none; }
.wpp-float:hover .wpp-float-tooltip { opacity: 1; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
  .hero-content { min-height: auto; padding: 80px 0 60px; }
  .hero-card { animation: none; margin-top: 0; }
  .about-float-badge, .about-experience-badge { display: none; }
  .about-img { height: 320px; }
  .cta-banner-inner { justify-content: center; text-align: center; }
  
  .navbar-collapse {
    background: var(--c-white);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
  }
  .nav-link { color: var(--c-blue) !important; padding: 10px 12px !important; }
  .btn-nav-cta { width: 100%; text-align: center; justify-content: center; margin-top: 10px; }
}

@media (max-width: 767.98px) {
  .hero-title  { font-size: 2rem; }
  .section-title { font-size: 1.5rem; }
  .stats-bar .stat-number { font-size: 1.8rem; }
  .product-card-top { padding: 18px 18px 12px; }
  .product-body { padding: 16px 18px 0; }
  .btn-product-cta { margin: 16px 18px 18px; }
  .contact-card { padding: 18px; }
  .wpp-float { bottom: 16px; right: 16px; }
  .hero-card { padding: 22px 18px; }
}

@media (max-width: 575.98px) {
  .hero-title  { font-size: 1.7rem; }
  .hero-subtitle { font-size: .9rem; }
  .btn-hero-primary, .btn-hero-secondary { font-size: .85rem; padding: 11px 20px; }
  .step-card { padding: 24px; min-height: auto; } 
  .step-icon-wrap { width: 48px; height: 48px; font-size: 1.2rem; }
  .bank-card { padding: 16px 10px; }
  .product-img { height: 160px; }
  .footer-desc { max-width: 100%; }
  .footer-badges { flex-direction: column; }
  .stat-item { padding: 10px 6px; }
}

.z-2 { z-index: 2; }
.py-lg-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }