/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #0F2D5C;
  --primary-dark: #0A1E3F;

  --white:    #FFFFFF;
  --off-white:#F7F9FC;

  --text:       #1A1A1A;
  --text-light: #5E6B7A;

  --border: #DCE3EC;
  --card:   #FFFFFF;

  /* seções escuras do site (CTA final, footer) usam azul-marinho no lugar de preto */
  --black: #0A1E3F;
  --dark:  #F5F9FF;
  --light: #1A1A1A;
  --muted: #5E6B7A;

  --red:      #0F2D5C;
  --red-deep: #0A1E3F;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

/* ============================================================
   UTILITY
============================================================ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.red { color: var(--red); }

/* fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HERO
============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F9FF 100%);
}

/* Diagonal accent — the signature element */
#hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(15,45,92,0.06) 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

/* Photo — left */
.hero-photo-wrap {
  flex: 0 0 auto;
  position: relative;
}
.hero-photo-frame {
  width: 320px;
  height: 380px;
  position: relative;
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--primary), transparent 60%);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
.hero-photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top 20%;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  filter: grayscale(15%) contrast(1.05);
  display: block;
}

/* Badge below photo */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  padding: 8px 16px;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px rgba(15,45,92,0.06);
}
.hero-badge span { color: var(--primary); font-weight: 700; }

/* Text — right */
.hero-text { flex: 1; min-width: 0; }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--primary);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: normal;
  color: var(--primary);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 18px 36px;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
  outline: none;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateX(4px);
}
.btn-primary svg { flex-shrink: 0; }

/* Brand logos */
.hero-brands {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-brands p {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.brand-tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  padding: 5px 12px;
  border: 1px solid var(--border);
  text-transform: uppercase;
}

/* ============================================================
   COMO FUNCIONA
============================================================ */
#como-funciona {
  background: var(--off-white);
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 60px;
  color: var(--text);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.step-card {
  background: var(--card);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.step-card:hover { background: var(--off-white); }
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--border);
  transition: background 0.3s;
}
.step-card:hover::before { background: var(--primary); }

.step-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: rgba(15,45,92,0.9);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
  letter-spacing: -0.04em;
  user-select: none;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: rgba(15,45,92,0.08);
  border: 1px solid rgba(15,45,92,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.step-icon svg { color: var(--primary); }

.step-heading {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}

.step-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   POR QUE COM O DOUGLAS
============================================================ */
#diferenciais {
  background: var(--white);
  padding: 100px 0;
}

.diff-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 32px;
  flex-wrap: wrap;
}
.diff-header .section-title { margin-bottom: 0; }

.diff-lead {
  max-width: 340px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  flex-shrink: 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}

.diff-card {
  background: var(--card);
  padding: 44px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: background 0.3s;
  min-width: 0;
}
.diff-card:hover { background: var(--off-white); }

.diff-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.diff-icon-wrap svg { color: var(--primary); }

.diff-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}

.diff-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   SIMULAÇÃO
============================================================ */
#simulacao {
  background: var(--off-white);
  padding: 100px 0;
}

.sim-left .section-title { margin-bottom: 16px; }

.sim-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sim-left p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.sim-bullets { list-style: none; }
.sim-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.sim-bullets li:last-child { border-bottom: none; }
.sim-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--primary);
  border-radius: 0;
  flex-shrink: 0;
}

/* Form */
.sim-form {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 48px 40px;
  box-shadow: 0 10px 40px rgba(15,45,92,0.08);
  min-width: 0;
}
.sim-form h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.sim-form p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--primary); }
.form-group select option { background: var(--white); }

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 18px;
  border: none;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.2s, transform 0.15s;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: scale(1.02);
}
.btn-whatsapp svg { flex-shrink: 0; }

/* ============================================================
   CTA FINAL
============================================================ */
#cta-final {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: 'PRIME';
  position: absolute;
  font-family: var(--font-display);
  font-size: 260px;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-inner .section-label { color: rgba(255,255,255,0.7); }
.cta-inner .section-title {
  margin-bottom: 20px;
  line-height: 1;
  color: var(--white);
}
.cta-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-wpp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 22px 48px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta-wpp:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--primary-dark);
  padding: 32px 0;
  text-align: center;
}
footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
footer strong { color: var(--white); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
============================================================ */
.float-wpp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  animation: pulse-wpp 2.5s infinite;
  transition: transform 0.2s;
}
.float-wpp:hover { transform: scale(1.12); animation: none; }
@keyframes pulse-wpp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ============================================================
   RESPONSIVE — TABLET
============================================================ */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 60px 0;
  }

  .hero-photo-frame {
    width: 280px;
    height: 360px;
  }

  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-brands { flex-direction: column; align-items: center; gap: 12px; }

  #hero::after { display: none; }

  .steps-grid,
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .diff-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sim-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: clamp(42px, 12vw, 60px);
    line-height: .9;
  }

  .hero-photo-frame {
    width: 240px;
    height: 320px;
    max-width: 100%;
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: clamp(32px, 9vw, 48px);
  }

  .sim-form {
    padding: 24px 20px;
  }

  .btn-primary,
  .btn-cta-wpp {
    width: 100%;
    justify-content: center;
  }

  #cta-final::before {
    display: none;
  }

  .float-wpp {
    bottom: 16px;
    right: 16px;
  }
}

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(15,45,92,0.08);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo span { color: var(--text-light); }
.nav-logo:hover { opacity: 0.75; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--primary); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 999;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Compensar navbar fixa no hero */
#hero { padding-top: 68px; }

/* ============================================================
   SOBRE O DOUGLAS
============================================================ */
#sobre {
  background: var(--white);
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.sobre-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 40px;
}
.stat-item {
  background: var(--off-white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-item strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
}
.stat-item span {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.4;
}

/* Card lateral */
.sobre-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(15,45,92,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sobre-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(15,45,92,0.12);
}
.sobre-card-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.sobre-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s ease;
}
.sobre-card:hover .sobre-card-img img { transform: scale(1.04); }

.sobre-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 3px solid var(--primary);
}
.sobre-card-info strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
}
.sobre-card-info span {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.sobre-wpp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 18px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, transform 0.2s;
}
.sobre-wpp:hover { background: #1da851; transform: scale(1.02); }

/* ============================================================
   TRANSIÇÕES EXTRAS (suaves, sem exagero)
============================================================ */
.diff-card {
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.diff-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,45,92,0.08);
}

.step-card {
  transition: background 0.3s ease, transform 0.3s ease;
}
.step-card:hover { transform: translateY(-3px); }

.brand-tag {
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.brand-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================================
   RESPONSIVE NAVBAR
============================================================ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 68px; left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(15,45,92,0.1);
    padding: 16px 24px 24px;
    border-top: 1px solid var(--border);
    z-index: 1000;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-cta { margin-top: 16px; width: 100%; justify-content: center; }

  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sobre-stats { grid-template-columns: 1fr; }
  .sobre-card { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .sobre-card { max-width: 100%; }
}

/* PAINEL ECONOMIA */
#economia { background: var(--white); padding: 100px 0; }

.economia-widget {
  max-width: 680px;
  margin: 0 auto;
}

.eco-slider-wrap { margin-bottom: 32px; }
.eco-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.eco-slider-header strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
}
.eco-slider {
  width: 100%;
  accent-color: var(--primary);
  height: 4px;
  cursor: pointer;
}

.eco-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.eco-card {
  border-radius: 12px;
  padding: 24px;
}
.eco-card--red {
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.2);
}
.eco-card--green {
  background: rgba(22,163,74,0.06);
  border: 1px solid rgba(22,163,74,0.2);
}

.eco-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.eco-card--red .eco-card-label { color: #DC2626; }
.eco-card--green .eco-card-label { color: #16A34A; }

.eco-card-sub {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.eco-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.eco-row span {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 2px;
}
.eco-row strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
}
.eco-card--red .eco-row strong { color: #DC2626; }
.eco-card--green .eco-row strong { color: #16A34A; }

.eco-economia {
  background: rgba(15,45,92,0.06);
  border: 1px solid rgba(15,45,92,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.eco-economia-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2px;
}
.eco-economia-sub {
  font-size: 11px;
  color: var(--text-light);
}
.eco-economia strong {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
}

.eco-disclaimer {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 600px) {
  .eco-cards { grid-template-columns: 1fr; }
  .eco-economia { flex-direction: column; gap: 8px; text-align: center; }
}

/* CANVAS HERO */
#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* FLOATING INSTAGRAM */
.float-insta {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(188,24,136,0.35);
  text-decoration: none;
  transition: transform 0.2s;
}
.float-insta:hover { transform: scale(1.12); }

@media (max-width: 600px) {
  .float-insta {
    bottom: 88px;
    right: 16px;
  }
}