/* =============================================
   DH Vital - Design System
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- Variables ---- */
:root {
  --green: #388766;
  --green-dark: #1e5c43;
  --green-light: #eef8f0;
  --green-mid: #4dba87;
  --white: #ffffff;
  --off-white: #f8fafb;
  --text: #111827;
  --text-mid: #374151;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --footer-bg: #111827;
  --whatsapp: #25D366;
  --red: #ef4444;
  --yellow: #f59e0b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.15);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --transition: all .25s ease;
  --max-w: 1200px;
  --px: 1.5rem;
  --section-py: 5rem;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ---- Typography ---- */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { color: var(--text-mid); }
strong { font-weight: 700; color: var(--text); }

/* ---- Container ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }

/* ---- Section ---- */
section { padding: var(--section-py) 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { font-size: 1.125rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.section-badge { display: inline-flex; align-items: center; gap: .4rem; background: var(--green-light); color: var(--green); font-size: .8125rem; font-weight: 600; padding: .35rem .85rem; border-radius: var(--radius-full); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1rem; }

/* ---- Accent ---- */
.accent { color: var(--green); }
.accent-bg { background: var(--green-light); }
.accent-border { border-left: 4px solid var(--green); padding-left: 1.25rem; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-size: .9375rem; font-weight: 600; padding: .75rem 1.75rem; border-radius: var(--radius-full); transition: var(--transition); line-height: 1; white-space: nowrap; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 4px 14px rgba(56,135,102,.3); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(56,135,102,.4); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-white { background: #fff; color: var(--green); font-weight: 700; }
.btn-white:hover { background: var(--green-light); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,.3); }
.btn-whatsapp:hover { background: #1ead57; transform: translateY(-1px); }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: var(--text-mid); }
.btn-lg { font-size: 1rem; padding: .9rem 2.25rem; }
.btn-sm { font-size: .8125rem; padding: .5rem 1.25rem; }
.btn-full { width: 100%; }
.btn:disabled { opacity: .6; pointer-events: none; }

/* ---- Cards ---- */
.card { background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow); border: 1px solid var(--border); overflow: hidden; }
.card-body { padding: 1.75rem; }
.card-hover { transition: var(--transition); }
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ---- Form ---- */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.form-control { width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .9375rem; color: var(--text); background: #fff; transition: var(--transition); appearance: none; }
.form-control:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(56,135,102,.12); }
.form-control.error { border-color: var(--red); }
.form-error { font-size: .8125rem; color: var(--red); margin-top: .35rem; display: none; }
.form-error.show { display: block; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; padding-right: 2.5rem; cursor: pointer; }
.form-note { font-size: .8125rem; color: var(--text-light); margin-top: .5rem; }

/* ---- Grid ---- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ---- Flex ---- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ---- Icon Box ---- */
.icon-box { width: 3rem; height: 3rem; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-box-lg { width: 4rem; height: 4rem; border-radius: var(--radius-lg); }
.icon-box-green { background: var(--green-light); color: var(--green); }
.icon-box-white { background: #fff; color: var(--green); box-shadow: var(--shadow-sm); }

/* ---- Check List ---- */
.check-list { display: flex; flex-direction: column; gap: .75rem; }
.check-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9375rem; color: var(--text-mid); }
.check-list li::before { content: ''; width: 1.1rem; height: 1.1rem; min-width: 1.1rem; border-radius: 50%; background: var(--green-light); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23388766' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; margin-top: .2rem; }

/* ---- Stats ---- */
.stat-box { text-align: center; padding: 1.5rem; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--green); line-height: 1; }
.stat-label { font-size: .875rem; color: var(--text-light); margin-top: .35rem; }

/* ---- Tags ---- */
.tag { display: inline-flex; align-items: center; gap: .35rem; font-size: .8125rem; font-weight: 600; padding: .3rem .75rem; border-radius: var(--radius-full); }
.tag-green { background: var(--green-light); color: var(--green); }
.tag-white { background: #fff; color: var(--text); }
.tag-border { border: 1.5px solid var(--border); background: transparent; color: var(--text-mid); }

/* =============================================
   HEADER
   ============================================= */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); transition: var(--transition); }
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .9rem var(--px); max-width: var(--max-w); margin: 0 auto; gap: 1rem; }
.header-logo img { height: 44px; width: auto; }
.header-nav { display: flex; align-items: center; gap: .25rem; }
.nav-link { font-size: .9rem; font-weight: 500; color: var(--text-mid); padding: .5rem .75rem; border-radius: var(--radius); transition: var(--transition); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--green); background: var(--green-light); }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); min-width: 220px; padding: .5rem; padding-top: .75rem; margin-top: .25rem; opacity: 0; visibility: hidden; transition: opacity .2s ease .3s, visibility .2s ease .3s; pointer-events: none; z-index: 200; }
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; pointer-events: all; transition-delay: 0s; }
.nav-dropdown a { display: flex; align-items: center; gap: .6rem; padding: .55rem .85rem; font-size: .875rem; font-weight: 500; color: var(--text-mid); border-radius: var(--radius); transition: var(--transition); }
.nav-dropdown a:hover { background: var(--green-light); color: var(--green); }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: .35rem 0; }
.nav-dropdown-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); padding: .35rem .85rem .1rem; }
.nav-arrow { font-size: .6rem; margin-left: .25rem; transition: transform .2s; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

.header-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.header-phone { font-size: .875rem; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: .4rem; }
.header-phone svg { color: var(--green); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; border-radius: var(--radius); transition: var(--transition); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav { display: none; background: #fff; border-top: 1px solid var(--border); padding: 1rem var(--px) 1.5rem; }
.mobile-nav.open { display: block; }
.mobile-nav-link { display: block; font-size: 1rem; font-weight: 500; color: var(--text); padding: .7rem 0; border-bottom: 1px solid var(--border); }
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-sub { padding-left: 1rem; }
.mobile-nav-sub a { display: block; font-size: .9rem; color: var(--text-light); padding: .45rem 0; }
.mobile-nav-sub a:hover { color: var(--green); }
.mobile-nav-ctas { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.25rem; }

/* =============================================
   HERO
   ============================================= */
.hero { background: var(--green-light); padding: 5rem 0 4rem; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: .4rem; background: #fff; color: var(--green); font-size: .8125rem; font-weight: 700; padding: .4rem 1rem; border-radius: var(--radius-full); box-shadow: var(--shadow-sm); margin-bottom: 1.25rem; border: 1px solid rgba(56,135,102,.15); }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero-desc { font-size: 1.125rem; color: var(--text-mid); margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero-trust-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 500; color: var(--text-mid); }
.hero-trust-item svg { color: var(--green); }
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-image img { max-width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }
.hero-image-cards { position: absolute; bottom: -1rem; left: -1.5rem; background: #fff; padding: .85rem 1.25rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .65rem; }
.hero-image-cards-2 { bottom: 3rem; right: -1.5rem; left: auto; }
.hero-card-icon { width: 2.2rem; height: 2.2rem; border-radius: var(--radius); background: var(--green-light); display: flex; align-items: center; justify-content: center; color: var(--green); }
.hero-card-text strong { display: block; font-size: .875rem; font-weight: 700; color: var(--text); }
.hero-card-text span { font-size: .75rem; color: var(--text-light); }

/* Services mini grid in hero */
.hero-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-top: 1.5rem; }
.hero-service-item { background: #fff; border-radius: var(--radius); padding: .85rem 1rem; display: flex; align-items: center; gap: .6rem; font-size: .875rem; font-weight: 600; color: var(--text); box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border); }
.hero-service-item:hover { border-color: var(--green); color: var(--green); }
.hero-service-item svg { color: var(--green); flex-shrink: 0; }

/* =============================================
   PARTNERS (logos)
   ============================================= */
.partners { background: var(--off-white); }
.partners-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.5rem 2.5rem; }
.partner-logo { transition: var(--transition); }
.partner-logo:hover { transform: scale(1.07); }
.partner-logo img { height: 100px; width: auto; object-fit: contain; }

/* =============================================
   DIFFERENTIALS
   ============================================= */
.differentials { background: #fff; }
.diff-card { background: var(--off-white); border-radius: var(--radius-xl); padding: 2rem 1.75rem; transition: var(--transition); border: 1px solid transparent; }
.diff-card:hover { background: #fff; border-color: var(--green); box-shadow: var(--shadow); }
.diff-card .icon-box { margin-bottom: 1.25rem; }
.diff-card h3 { margin-bottom: .6rem; }

/* =============================================
   WHY SECTION
   ============================================= */
.why-section { background: var(--green-light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-content h2 { margin-bottom: 1rem; }
.why-content p { margin-bottom: 1.75rem; }
.why-image img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar { background: var(--green); color: #fff; padding: 2.5rem 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { }
.stat-item .stat-number { color: #fff; }
.stat-item .stat-label { color: rgba(255,255,255,.75); }

/* =============================================
   PLANS SECTION
   ============================================= */
.plans-section { background: #fff; }
.plan-card { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); }
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card-header { padding: 1.75rem; color: #fff; }
.plan-card-body { padding: 1.75rem; }
.plan-badge { display: inline-flex; font-size: .75rem; font-weight: 700; padding: .25rem .7rem; border-radius: var(--radius-full); background: rgba(255,255,255,.2); color: #fff; margin-bottom: .75rem; }
.plan-card-header h3 { margin-bottom: .5rem; }
.plan-card-header p { color: rgba(255,255,255,.85); font-size: .9rem; }

/* =============================================
   FORM SECTION
   ============================================= */
.form-section { background: var(--green-light); }
.form-wrapper { background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 2.5rem; }
.form-wrapper h3 { margin-bottom: .5rem; }
.form-wrapper .lead { color: var(--text-light); margin-bottom: 2rem; }
.form-sidebar { }
.form-contact-card { background: #fff; border-radius: var(--radius-xl); padding: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); margin-bottom: 1.25rem; display: flex; align-items: flex-start; gap: 1rem; }
.form-contact-card .icon-box { flex-shrink: 0; }
.form-contact-card strong { display: block; font-size: .9rem; color: var(--text); }
.form-contact-card span { font-size: .85rem; color: var(--text-light); }
.form-benefits { background: var(--green); color: #fff; border-radius: var(--radius-xl); padding: 1.75rem; }
.form-benefits h4 { margin-bottom: 1rem; color: #fff; }
.form-benefits li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; margin-bottom: .6rem; color: rgba(255,255,255,.9); }
.form-benefits li::before { content: '✓'; font-weight: 700; color: #fff; flex-shrink: 0; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--off-white); }
.testimonial-card { background: #fff; border-radius: var(--radius-xl); padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.testimonial-stars { color: var(--yellow); font-size: 1rem; margin-bottom: .75rem; letter-spacing: .05em; }
.testimonial-text { font-style: italic; color: var(--text-mid); margin-bottom: 1rem; font-size: .9375rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--green); font-size: .875rem; }
.testimonial-author strong { font-size: .875rem; color: var(--text); }
.testimonial-author span { font-size: .75rem; color: var(--text-light); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: #fff; padding: 4.5rem 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.125rem; margin-bottom: 2rem; }
.cta-banner-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--footer-bg); color: rgba(255,255,255,.75); }
.footer-main { padding: 4rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand img { height: 42px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); opacity: .9; }
.footer-brand p { font-size: .875rem; max-width: 280px; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .6rem; }
.footer-social-link { width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; transition: var(--transition); color: rgba(255,255,255,.6); }
.footer-social-link:hover { background: var(--green); border-color: var(--green); color: #fff; }
.footer-col h4 { font-size: .875rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; letter-spacing: .04em; text-transform: uppercase; }
.footer-link { display: block; font-size: .875rem; color: rgba(255,255,255,.6); padding: .3rem 0; transition: var(--transition); }
.footer-link:hover { color: var(--green-mid); padding-left: .35rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem; margin-bottom: .85rem; }
.footer-contact-item svg { color: var(--green-mid); flex-shrink: 0; margin-top: .15rem; }
.footer-contact-item a:hover { color: var(--green-mid); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8125rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom a:hover { color: var(--green-mid); }
.susep-badge { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: .35rem .85rem; font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.7); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999; }
.whatsapp-float-btn { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--whatsapp); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: var(--transition); animation: pulse-wp 2s infinite; }
.whatsapp-float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,.6); animation: none; }
@keyframes pulse-wp { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 30px rgba(37,211,102,.6),0 0 0 8px rgba(37,211,102,.1)} }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); color: #fff; padding: 4rem 0 3.5rem; }
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.125rem; max-width: 650px; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: rgba(255,255,255,.65); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,.4); }

/* =============================================
   RISK SECTION
   ============================================= */
.risk-section { background: #fff5f5; }
.risk-card { background: #fff; border-radius: var(--radius-lg); padding: 1.5rem; border-left: 4px solid var(--red); }
.risk-card h4 { color: var(--red); margin-bottom: .5rem; }
.risk-card p { font-size: .9rem; }

/* =============================================
   OBJECTIONS / FAQ ACCORDION
   ============================================= */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1.25rem 0; font-size: 1rem; font-weight: 600; color: var(--text); text-align: left; gap: 1rem; }
.faq-question:hover { color: var(--green); }
.faq-icon { width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); font-size: 1rem; font-weight: 700; transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-answer { padding: 0 0 1.25rem; font-size: .9375rem; color: var(--text-mid); display: none; }
.faq-item.open .faq-answer { display: block; }

/* =============================================
   OPERATOR PAGE
   ============================================= */
.operator-hero { padding: 4rem 0 3.5rem; }
.operator-badge { }
.op-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 1rem; }
.op-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.network-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
.network-item { background: #fff; border-radius: var(--radius); padding: 1rem; text-align: center; border: 1px solid var(--border); transition: var(--transition); }
.network-item:hover { border-color: currentColor; }
.network-item img { height: 40px; object-fit: contain; margin: 0 auto .5rem; }
.network-item span { font-size: .75rem; color: var(--text-light); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-info-card { background: var(--green-light); border-radius: var(--radius-xl); padding: 2rem; margin-bottom: 1.5rem; }

/* =============================================
   OBRIGADO
   ============================================= */
.success-icon { width: 5rem; height: 5rem; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.success-icon svg { color: #fff; }
.steps-list { display: flex; flex-direction: column; gap: 1rem; }
.step-item { display: flex; align-items: flex-start; gap: 1rem; background: #fff; border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-sm); }
.step-num { width: 2rem; height: 2rem; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .875rem; font-weight: 700; flex-shrink: 0; }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-green { color: var(--green); }
.text-white { color: #fff; }
.text-light { color: var(--text-light); }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.pt-0 { padding-top: 0; } .pb-0 { padding-bottom: 0; }
.hidden { display: none !important; }
.w-full { width: 100%; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

/* Divider */
.divider { height: 1px; background: var(--border); margin: 2rem 0; }

/* Alert */
.alert { border-radius: var(--radius); padding: 1rem 1.25rem; font-size: .9rem; margin-bottom: 1rem; }
.alert-success { background: #f0fdf4; color: #15803d; border: 1px solid #86efac; }
.alert-error { background: #fef2f2; color: #dc2626; border: 1px solid #fca5a5; }

/* Spinner */
.spinner { width: 1.25rem; height: 1.25rem; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Scroll animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-grid { gap: 2.5rem; }
  .why-grid { gap: 2.5rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 3.5rem; --px: 1rem; }
  .header-nav, .header-phone, .header-actions .btn:not(.btn-whatsapp) { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image { display: none; }
  .hero-trust { gap: 1rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .form-section .grid-2 { grid-template-columns: 1fr; }
  .hero-services { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .partners-grid { gap: 1.25rem 1.5rem; }
  .partner-logo { max-width: calc(50% - 0.75rem); }
  .partner-logo img { height: 60px; max-width: 100%; }
  h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .page-hero { padding: 2.5rem 0 2rem; }
  .op-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .op-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-wrapper { padding: 1.5rem; }
  .operator-hero { padding: 2.5rem 0 2rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .header-actions { gap: .5rem; }
}
