/* ============================================================
   DESIGN SYSTEM
   ============================================================ */
:root {
  --brand:         #2E86C1;
  --brand-dark:    #1A4C7A;
  --brand-light:   #5DADE2;
  --ink:           #0A0A0A;
  --bg:            #ffffff;
  --bg-secondary:  #F0F6FB;
  --card:          #ffffff;
  --muted:         #64748b;
  --border:        #dde5ed;
  --foreground:    #0f1f30;
  --success:       #16a34a;
  --destructive:   #dc2626;
  --gradient-brand: linear-gradient(135deg, #1A4C7A 0%, #2E86C1 50%, #5DADE2 100%);
  --gradient-dark-card: linear-gradient(160deg, #111 0%, #122036 100%);
  --shadow-brand:    0 20px 40px -15px rgba(46,134,193,0.45);
  --shadow-elevated: 0 25px 50px -20px rgba(26,76,122,0.35);
  --shadow-soft:     0 8px 24px -8px rgba(46,80,120,0.18);
  --radius: 0.75rem;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--foreground); background: var(--bg); -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5 { font-family: var(--font); letter-spacing: -0.02em; line-height: 1.15; color: var(--foreground); }
h1 { letter-spacing: -0.035em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font); }
ul, ol { list-style: none; }

/* LAYOUT */
.container-page { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1400px) { .container-page { max-width: 1360px; } }
.section-py { padding: 5rem 0; }
@media (min-width: 768px) { .section-py { padding: 7rem 0; } }
.section-header { max-width: 48rem; margin: 0 auto; text-align: center; }
.section-eyebrow { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand); }
.section-title { margin-top: 0.75rem; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; }
.section-subtitle { margin-top: 1.25rem; font-size: 1.05rem; color: var(--muted); line-height: 1.7; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: var(--radius); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.9rem 1.6rem; transition: all 0.18s ease; border: 2px solid transparent; line-height: 1; white-space: nowrap; }
.btn-brand { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-brand:hover { filter: brightness(1.1); transform: scale(1.02); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: #fff; color: var(--ink); }
.btn-outline-dark { background: transparent; color: var(--foreground); border-color: var(--border); }
.btn-outline-dark:hover { background: var(--bg-secondary); }
.btn-white { background: #fff; color: var(--brand-dark); box-shadow: var(--shadow-elevated); }
.btn-white:hover { filter: brightness(0.97); transform: scale(1.02); }
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

/* STICKY HEADER */
#site-header { position: sticky; top: 0; z-index: 100; background: var(--ink); border-bottom: 1px solid rgba(46,134,193,0.1); transition: all 0.3s ease; }
#site-header.scrolled { background: rgba(10,10,10,0.96); backdrop-filter: blur(12px); border-bottom-color: rgba(46,134,193,0.3); box-shadow: var(--shadow-elevated); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 4rem; }
@media (min-width: 768px) { .header-inner { height: 5rem; } }
.header-logo img { height: 2.5rem; width: auto; }
@media (min-width: 768px) { .header-logo img { height: 3rem; } }
.header-nav { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 1024px) { .header-nav { display: flex; } }
.header-nav a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.8); transition: color 0.15s; }
.header-nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.btn-call { display: none; align-items: center; gap: 0.5rem; background: var(--brand); color: #fff; border-radius: var(--radius); padding: 0.6rem 1rem; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; box-shadow: var(--shadow-brand); transition: filter 0.18s; }
.btn-call:hover { filter: brightness(1.1); }
@media (min-width: 640px) { .btn-call { display: flex; } }
.btn-quote-header { display: none; align-items: center; padding: 0.6rem 1rem; border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius); color: #fff; font-size: 0.8rem; font-weight: 600; transition: all 0.18s; }
.btn-quote-header:hover { background: #fff; color: var(--ink); }
@media (min-width: 768px) { .btn-quote-header { display: flex; } }
.btn-hamburger { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border: none; background: transparent; color: #fff; border-radius: var(--radius); transition: background 0.15s; }
.btn-hamburger:hover { background: rgba(255,255,255,0.1); }
@media (min-width: 1024px) { .btn-hamburger { display: none; } }
.btn-hamburger svg { width: 1.25rem; height: 1.25rem; }
.dot-live { position: relative; display: flex; width: 0.5rem; height: 0.5rem; }
.dot-live span { display: block; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: #16a34a; position: relative; z-index: 1; }
.dot-live::before { content: ''; position: absolute; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: rgba(22,163,74,0.7); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(2.5); opacity: 0; } }
.mobile-nav { display: none; flex-direction: column; gap: 0.25rem; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.1); background: var(--ink); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 0.75rem 1rem; border-radius: var(--radius); color: rgba(255,255,255,0.85); font-weight: 500; transition: background 0.15s; }
.mobile-nav a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.mobile-nav-cta { margin-top: 0.5rem; text-align: center; border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius); padding: 0.75rem; font-weight: 600; color: #fff; }

/* HERO */
.hero { background: var(--ink); background-image: radial-gradient(ellipse at 20% 0%, rgba(26,76,122,0.6) 0%, rgba(10,10,10,1) 60%); padding: 4rem 0 3rem; position: relative; overflow: hidden; }
@media (min-width: 768px) { .hero { padding: 6rem 0 4rem; } }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 420px; gap: 4rem; } }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(46,134,193,0.15); border: 1px solid rgba(46,134,193,0.35); border-radius: 2rem; padding: 0.4rem 1rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-light); margin-bottom: 1.5rem; }
.hero-badge .badge-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--success); animation: pulse-dot 2s infinite; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; color: #fff; line-height: 1.1; }
.hero h1 .gradient-text { background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { margin-top: 1.25rem; font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.trust-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.trust-badge svg { color: var(--brand-light); width: 0.9rem; height: 0.9rem; flex-shrink: 0; }
.stats-panel { background: var(--gradient-dark-card); border: 1px solid rgba(46,134,193,0.2); border-radius: 1.5rem; padding: 2rem 1.5rem; box-shadow: var(--shadow-elevated); }
.stats-panel-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-light); margin-bottom: 1.25rem; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 0.75rem; padding: 1rem; text-align: center; }
.stat-value { font-size: 1.75rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-label { margin-top: 0.3rem; font-size: 0.7rem; color: rgba(255,255,255,0.55); line-height: 1.3; }
.stat-accent { color: var(--brand-light); }
.emergency-note { margin-top: 1.25rem; padding: 0.9rem 1rem; border-radius: 0.75rem; background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.25); font-size: 0.78rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.emergency-note strong { color: #4ade80; }

/* SERVICES */
.services-section { background: var(--bg); padding: 5rem 0; }
@media (min-width: 768px) { .services-section { padding: 7rem 0; } }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.75rem; box-shadow: var(--shadow-soft); transition: all 0.3s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); border-color: rgba(46,134,193,0.4); }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; background: var(--gradient-brand); box-shadow: var(--shadow-brand); color: #fff; transition: transform 0.3s; }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-icon svg { width: 1.6rem; height: 1.6rem; }
.service-card h3 { margin-top: 1.25rem; font-size: 1.1rem; font-weight: 800; }
.service-card p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.service-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.25rem; font-size: 0.875rem; font-weight: 700; color: var(--brand); transition: gap 0.2s; }
.service-link:hover { gap: 0.65rem; }
.service-link svg { width: 1rem; height: 1rem; }

/* PROCESS */
.process-section { background: var(--bg-secondary); padding: 5rem 0; position: relative; }
@media (min-width: 768px) { .process-section { padding: 7rem 0; } }
.process-grid { display: grid; gap: 2rem; margin-top: 3.5rem; position: relative; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .process-grid::before { content: ''; position: absolute; top: 3rem; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(to right, transparent, var(--brand), transparent); } }
.process-step { text-align: center; }
.process-icon-wrap { position: relative; display: inline-flex; width: 6rem; height: 6rem; align-items: center; justify-content: center; border-radius: 50%; background: var(--card); border: 4px solid var(--brand); box-shadow: var(--shadow-elevated); margin: 0 auto; }
.process-icon-wrap svg { width: 2.5rem; height: 2.5rem; color: var(--brand); }
.process-num { position: absolute; top: -0.5rem; right: -0.5rem; display: flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: var(--gradient-brand); color: #fff; font-size: 0.7rem; font-weight: 900; box-shadow: var(--shadow-brand); }
.process-step h3 { margin-top: 1.25rem; font-size: 1.1rem; font-weight: 800; }
.process-step p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); }

/* WHY US */
.porque-section { background: var(--ink); color: #fff; padding: 5rem 0; }
@media (min-width: 768px) { .porque-section { padding: 7rem 0; } }
.porque-section .section-eyebrow { color: var(--brand-light); }
.porque-section .section-title { color: #fff; }
.porque-section .section-subtitle { color: rgba(255,255,255,0.7); }
.porque-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.25rem; margin-top: 3.5rem; }
.porque-card { background: var(--gradient-dark-card); border: 1px solid rgba(255,255,255,0.1); border-radius: 1.25rem; padding: 1.75rem; transition: all 0.3s; }
.porque-card:hover { border-color: rgba(46,134,193,0.5); box-shadow: var(--shadow-brand); }
.porque-icon { display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; background: rgba(46,134,193,0.15); border: 1px solid rgba(46,134,193,0.3); color: var(--brand-light); }
.porque-icon svg { width: 1.6rem; height: 1.6rem; }
.porque-card h3 { margin-top: 1.25rem; font-size: 1.05rem; font-weight: 800; color: #fff; }
.porque-card p { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* TESTIMONIALS */
.testemunhos-section { background: var(--bg); padding: 5rem 0; }
@media (min-width: 768px) { .testemunhos-section { padding: 7rem 0; } }
.testemunhos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 3.5rem; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.5rem; box-shadow: var(--shadow-soft); position: relative; transition: box-shadow 0.3s; }
.testimonial-card:hover { box-shadow: var(--shadow-elevated); }
.quote-icon { position: absolute; top: 1.25rem; right: 1.25rem; color: rgba(46,134,193,0.15); width: 2rem; height: 2rem; }
.stars { display: flex; gap: 0.15rem; color: var(--brand); }
.stars svg { width: 1rem; height: 1rem; fill: currentColor; }
.testimonial-text { margin-top: 1rem; font-size: 0.875rem; line-height: 1.65; color: rgba(15,31,48,0.85); }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.author-avatar { display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--gradient-brand); color: #fff; font-weight: 800; font-size: 0.85rem; flex-shrink: 0; }
.author-name { font-weight: 800; font-size: 0.875rem; }
.author-meta { font-size: 0.75rem; color: var(--muted); }
.metrics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 4rem; }
@media (min-width: 768px) { .metrics-grid { grid-template-columns: repeat(4, 1fr); } }
.metric-card { background: var(--gradient-brand); border-radius: 1.25rem; padding: 1.5rem; text-align: center; color: #fff; box-shadow: var(--shadow-brand); }
@media (min-width: 768px) { .metric-card { padding: 1.75rem; } }
.metric-value { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 900; }
.metric-label { margin-top: 0.25rem; font-size: 0.8rem; color: rgba(255,255,255,0.85); }

/* COVERAGE */
.cobertura-section { background: var(--bg-secondary); padding: 5rem 0; }
@media (min-width: 768px) { .cobertura-section { padding: 7rem 0; } }
.cobertura-grid { display: grid; gap: 2.5rem; margin-top: 3.5rem; align-items: center; }
@media (min-width: 1024px) { .cobertura-grid { grid-template-columns: 1fr 1fr; } }
.map-wrap { aspect-ratio: 4/5; max-width: 24rem; margin: 0 auto; border-radius: 1.5rem; padding: 4px; background: var(--gradient-brand); box-shadow: var(--shadow-elevated); }
.map-inner { height: 100%; border-radius: calc(1.5rem - 4px); background: var(--ink); display: flex; align-items: center; justify-content: center; padding: 1.5rem; overflow: hidden; }
.map-inner img { max-height: 100%; object-fit: contain; filter: invert(1) sepia(1) saturate(6) hue-rotate(175deg) brightness(1.05); opacity: 0.9; }
.districts-section h3 { font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.districts-section h3 svg { color: var(--brand); width: 1.4rem; height: 1.4rem; }
.districts-section p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.9rem; }
.city-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.city-tag { display: inline-block; padding: 0.35rem 1rem; border-radius: 2rem; background: var(--card); border: 1px solid rgba(46,134,193,0.2); font-size: 0.85rem; font-weight: 600; color: var(--brand-dark); box-shadow: var(--shadow-soft); }
.districts-details { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 1.25rem; }
.districts-details summary { font-size: 0.875rem; font-weight: 700; cursor: pointer; user-select: none; }
.districts-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: 1rem; font-size: 0.8rem; color: var(--muted); }

/* QUOTE FORM */
.form-section { background: var(--bg-secondary); padding: 5rem 0; }
@media (min-width: 768px) { .form-section { padding: 7rem 0; } }
.form-card { max-width: 48rem; margin: 3rem auto 0; background: var(--card); border: 1px solid var(--border); border-radius: 1.5rem; padding: 1.5rem; box-shadow: var(--shadow-elevated); }
@media (min-width: 768px) { .form-card { padding: 2.5rem; } }
.progress-wrap { margin-bottom: 2rem; }
.progress-labels { display: flex; justify-content: space-between; font-size: 0.75rem; font-weight: 600; color: var(--muted); margin-bottom: 0.5rem; }
.progress-bar { height: 0.5rem; border-radius: 2rem; background: #e2e8f0; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gradient-brand); border-radius: 2rem; transition: width 0.5s ease; }
.step-panel { display: none; animation: floatUp 0.3s ease; }
.step-panel.active { display: block; }
@keyframes floatUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.service-grid-select { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin-top: 0.75rem; }
@media (min-width: 480px) { .service-grid-select { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .service-grid-select { grid-template-columns: repeat(4, 1fr); } }
.service-option { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.75rem 0.5rem; border: 2px solid var(--border); border-radius: 0.75rem; background: var(--bg); cursor: pointer; transition: all 0.15s; text-align: center; }
.service-option:hover { border-color: rgba(46,134,193,0.4); }
.service-option.selected { border-color: var(--brand); background: rgba(46,134,193,0.05); box-shadow: var(--shadow-brand); }
.service-option svg { width: 1.4rem; height: 1.4rem; color: var(--muted); transition: color 0.15s; }
.service-option.selected svg { color: var(--brand); }
.service-option span { font-size: 0.7rem; font-weight: 700; line-height: 1.3; color: var(--foreground); }
.urgency-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-top: 0.75rem; }
.client-grid  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin-top: 0.75rem; }
.select-option { display: flex; flex-direction: column; align-items: flex-start; gap: 0.25rem; padding: 1rem; border: 2px solid var(--border); border-radius: 0.75rem; background: var(--bg); cursor: pointer; transition: all 0.15s; }
.select-option:hover { border-color: rgba(46,134,193,0.4); }
.select-option.selected { border-color: var(--brand); background: rgba(46,134,193,0.05); box-shadow: var(--shadow-brand); }
.urgency-emoji { font-size: 1.4rem; }
.select-label { font-weight: 800; font-size: 0.85rem; color: var(--foreground); }
.select-desc  { font-size: 0.7rem; color: var(--muted); }
.field-group { margin-bottom: 1.25rem; }
.field-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .field-row.two-col { grid-template-columns: repeat(2, 1fr); } }
.field-label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--foreground); }
.field-label .req { color: var(--destructive); }
.field-input, .field-select, .field-textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 0.5rem; background: var(--bg); font-size: 0.875rem; font-family: var(--font); color: var(--foreground); transition: box-shadow 0.15s, border-color 0.15s; outline: none; }
.field-input:focus, .field-select:focus, .field-textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(46,134,193,0.15); }
.field-textarea { resize: none; }
.field-error { display: none; align-items: center; gap: 0.3rem; margin-top: 0.4rem; font-size: 0.75rem; font-weight: 600; color: var(--destructive); }
.field-error.visible { display: flex; }
.company-fields { display: none; }
.company-fields.visible { display: grid; gap: 1rem; }
@media (min-width: 640px) { .company-fields.visible { grid-template-columns: repeat(2, 1fr); } }
.form-nav { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; margin-top: 1.75rem; flex-wrap: wrap; }
.form-nav .btn-next, .form-nav .btn-submit { margin-left: auto; }
.security-note { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 1rem; }
.form-alert { display: none; align-items: flex-start; gap: 0.5rem; padding: 0.75rem 1rem; border-radius: 0.5rem; font-size: 0.85rem; margin-bottom: 1rem; }
.form-alert.visible { display: flex; }
.form-alert-error { background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.3); color: var(--destructive); }
.form-alert-error svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.form-success { display: none; text-align: center; padding: 3rem 1.5rem; animation: floatUp 0.4s ease; }
.form-success.visible { display: block; }
.success-icon { display: inline-flex; width: 5rem; height: 5rem; border-radius: 50%; align-items: center; justify-content: center; background: rgba(22,163,74,0.1); color: var(--success); margin: 0 auto 1.5rem; }
.success-icon svg { width: 3rem; height: 3rem; }
.form-success h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.form-success p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.5rem; }
.success-ref { font-family: monospace; font-weight: 800; color: var(--foreground); }
.success-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 1.5rem; }
.btn-reset-form { background: none; border: none; font-size: 0.85rem; color: var(--muted); text-decoration: underline; cursor: pointer; margin-top: 1.5rem; display: block; margin-left: auto; margin-right: auto; }

/* B2B */
.b2b-section { background: var(--bg); padding: 5rem 0; }
@media (min-width: 768px) { .b2b-section { padding: 7rem 0; } }
.b2b-card { background: var(--gradient-brand); border-radius: 1.5rem; padding: 2rem; color: #fff; box-shadow: var(--shadow-elevated); position: relative; overflow: hidden; }
@media (min-width: 768px) { .b2b-card { padding: 3.5rem; } }
.b2b-card::before { content: ''; position: absolute; width: 20rem; height: 20rem; background: rgba(255,255,255,0.1); filter: blur(3rem); right: -5rem; top: -5rem; border-radius: 50%; pointer-events: none; }
.b2b-card::after  { content: ''; position: absolute; width: 18rem; height: 18rem; background: rgba(10,10,10,0.2); filter: blur(3rem); left: -2.5rem; bottom: -5rem; border-radius: 50%; pointer-events: none; }
.b2b-card .eyebrow { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.8); }
.b2b-card h2 { margin-top: 0.75rem; font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 900; color: #fff; max-width: 45rem; line-height: 1.15; }
.b2b-card p { margin-top: 1.25rem; color: rgba(255,255,255,0.85); max-width: 36rem; line-height: 1.7; }
.b2b-card .b2b-cta { margin-top: 2rem; position: relative; z-index: 1; }

/* FOOTER */
.site-footer { background: var(--ink); color: #fff; padding: 5rem 0 2rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1.5fr 1fr; } }
.footer-logo { height: 3.5rem; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link { display: flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; transition: background 0.18s; }
.social-link:hover { background: var(--brand); }
.social-link svg { width: 1rem; height: 1rem; }
.footer-heading { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-light); margin-bottom: 1rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); transition: color 0.15s; }
.footer-contact-item:hover { color: #fff; }
.footer-contact-item svg { width: 1rem; height: 1rem; color: var(--brand-light); flex-shrink: 0; margin-top: 0.15rem; }
.footer-contact-item strong { color: #fff; font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.7); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* FLOATING CTAs */
.floating-ctas { position: fixed; bottom: 1.5rem; right: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; z-index: 50; }
.float-btn { display: flex; align-items: center; justify-content: center; width: 3.25rem; height: 3.25rem; border-radius: 50%; color: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: transform 0.2s, box-shadow 0.2s; }
.float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,0.4); }
.float-btn svg { width: 1.4rem; height: 1.4rem; }
.float-phone { background: var(--brand); }
.float-whatsapp { background: #22c55e; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.revealed { opacity: 1; transform: none; }
