/* ============================================================
   ENGETMIX — Estaca Hélice Contínua · style.css
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green:       #3be37a;
  --green-dark:  #00ad40;
  --green-vibrant: #00b043;
  --red:         #e3211c;
  --blue-div:    #0A28E0;

  /* Fundos */
  --bg:          #ffffff;
  --bg-alt:      #f5f6f8;
  --bg-card:     #ffffff;
  --bg-dark:     #0c0e13;

  /* Textos */
  --text-h:      #161a21;
  --body:        #4a5568;
  --muted:       #718096;

  /* Bordas */
  --border:      rgba(0,0,0,.08);
  --border-l:    rgba(0,0,0,.14);

  --font:        'Montserrat', sans-serif;
  --mw:          1200px;
  --t:           .25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); overflow-x: hidden; color: var(--body); }
#ehc-lp { background: var(--bg); }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; }

.container { max-width: var(--mw); margin: 0 auto; padding: 0 32px; width: 100%; }

[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

/* ============================================================ HEADER */
#ehc-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: 80px;
  display: flex; align-items: center;
  background: transparent;
  transition: background var(--t), box-shadow var(--t), height var(--t);
}
#ehc-header.solid {
  background: #ffffff;
  box-shadow: 0 2px 14px rgba(22,26,33,.10);
  height: 74px;
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }

/* Logo Block */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-img {
  height: 40px;
  width: auto;
  transition: filter var(--t);
}
/* When header is transparent (white logo/text theme over dark background) */
#ehc-header:not(.solid) .logo-img {
  filter: brightness(0) invert(1);
}
.logo-divider {
  width: 1.5px;
  height: 32px;
  background: var(--red);
  display: inline-block;
}
.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--font);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #ffffff;
  transition: color var(--t);
  text-align: left;
}
.logo-text-line1 {
  font-weight: 700;
}
.logo-text-line2 {
  font-weight: 900;
}
#ehc-header.solid .logo-text-block {
  color: var(--blue-div); /* blue text when scrolled */
}

/* Nav */
.header-nav { display: flex; align-items: center; gap: 32px; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  transition: color var(--t);
  text-decoration: none;
  font-family: var(--font);
  white-space: nowrap;
}
#ehc-header.solid .nav-item {
  color: var(--text-h);
}
a.nav-item:hover {
  color: var(--green) !important;
}
#ehc-header.solid a.nav-item:hover {
  color: var(--green-dark) !important;
}

.btn-cta-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: #ffffff;
  font-family: var(--font);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 4px 12px rgba(0, 173, 64, 0.15);
  border: none;
  cursor: pointer;
}
.btn-cta-header:hover {
  background: #008f35;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 173, 64, 0.25);
}

/* ============================================================ HERO — fundo escuro com foto */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
  background-image: 
    linear-gradient(180deg, rgba(8,10,14,0.85) 0%, rgba(8,10,14,0.60) 50%, rgba(8,10,14,0.92) 100%),
    url('img/hero-maquina-final.jpg');
  background-size: contain;
  background-position: center bottom 20px;
  background-repeat: no-repeat;
}

.hero-content {
  padding: 120px 32px 80px;
  max-width: var(--mw);
  margin: 0 auto;
  width: 100%;
}
.hero-inner { max-width: 720px; text-align: left; }

.hero-badge {
  display: inline-flex; align-items: center;
  padding: 8px 20px; border: none;
  border-radius: 999px; background: var(--red);
  margin-bottom: 28px;
}
.hero-badge-text { color: #ffffff; font-weight: 800; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }

.hero-eyebrow { color: #fff; font-weight: 800; font-size: clamp(18px,2.4vw,24px); text-transform: uppercase; margin-bottom: 12px; }
.hero-title   { color: #fff; font-weight: 900; font-size: clamp(40px,6.2vw,76px); line-height: 1.02; letter-spacing: -.025em; text-shadow: 0 2px 8px rgba(8, 10, 14, 0.4); }
.hero-lead    { margin: 18px 0 0; color: #fff; font-weight: 700; font-size: clamp(16px,1.8vw,20px); text-shadow: 0 1px 4px rgba(8, 10, 14, 0.4); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 38px; }

.hero-mobile-img-wrapper {
  display: none;
}

@media (max-width: 991px) {
  /* Header icons/text dark over white top of hero */
  #ehc-header:not(.solid) .logo-img {
    filter: none !important;
  }
  #ehc-header:not(.solid) .logo-text-block {
    color: var(--blue-div) !important;
  }
  #ehc-header:not(.solid) .nav-phone {
    color: var(--text-h) !important;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 48%, #0A28E0 78%, #081340 100%);
    background-image: none;
  }
  .hero-content {
    padding: 105px 20px 48px;
  }
  .hero-inner {
    max-width: 100%;
  }
  .hero-title {
    color: #161a21 !important;
    text-shadow: none !important;
  }
  .hero-lead {
    color: #4a5568 !important;
    text-shadow: none !important;
  }
  .hero-mobile-img-wrapper {
    display: block;
    margin-top: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
  .hero-mobile-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
}

@media (min-width: 992px) {
  .hero {
    min-height: 100vh;
    align-items: center;
    background-image: 
      linear-gradient(90deg, #080a0e 0%, #080a0e 25%, rgba(8,10,14,0) 60%),
      linear-gradient(0deg, rgba(8,10,14,0.20) 0%, rgba(8,10,14,0) 30%),
      url('img/hero-maquina-final.jpg');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
  }
  .hero-content {
    padding: 120px 32px 80px;
  }
}

/* ============================================================ BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-vibrant); color: #ffffff;
  font-weight: 800; font-size: 16px;
  padding: 15px 28px; border-radius: 8px;
  border: none; cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 4px 14px rgba(0, 176, 67, 0.2);
}
.btn-primary:hover { background: #00993a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 176, 67, 0.3); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.9);
  font-weight: 700; font-size: 15px;
  padding: 15px 24px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.28);
  transition: border-color var(--t), transform var(--t); cursor: pointer;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.6); transform: translateY(-2px); }

.btn-green-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--green-dark);
  font-weight: 800; font-size: 16px;
  padding: 15px 28px; border-radius: 8px;
  border: 2px solid var(--green-dark);
  transition: background var(--t), color var(--t), transform var(--t); cursor: pointer;
}
.btn-green-outline:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); }

/* ============================================================ STATS STRIP — fundo azul */
.stats-strip { background: var(--blue-div); }
.stats-grid  { display: grid; grid-template-columns: repeat(3,1fr); }

.stat-item {
  padding: 52px 24px; text-align: center; position: relative;
}
.stat-item:not(:last-child)::after {
  content: ''; position: absolute;
  right: 0; top: 22%; bottom: 22%;
  width: 1px; background: rgba(255, 255, 255, 0.24);
}
.stat-number { color: #fff; font-weight: 900; font-size: clamp(44px,5.2vw,64px); line-height: 1; letter-spacing: -.03em; }
.stat-number.accent { color: var(--green); }
.stat-label  { margin-top: 10px; color: #fff; font-weight: 800; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }

/* ============================================================ POR QUE ESCOLHER — fundo branco */
.why-section { background: var(--bg); padding: 96px 0; }

.why-header {
  margin-bottom: 48px;
  text-align: left;
}
.why-header .section-eyebrow {
  color: var(--red);
}

.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 32px 24px; background: #f8f9fb; border-radius: 12px; border: 1px solid var(--border); transition: background var(--t), box-shadow var(--t);
  display: flex; flex-direction: column;
}
.feature-card:hover { background: #fff; box-shadow: 0 6px 24px rgba(0,0,0,.06); }
.feature-icon { width: 38px; height: 38px; border-radius: 8px; background: rgba(0,173,64,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--green-dark); }
.feature-title { color: var(--text-h); font-weight: 800; font-size: 16px; margin-bottom: 10px; }
.feature-desc  { color: var(--body); font-size: 13.5px; font-weight: 500; line-height: 1.6; }

/* Red Highlight Banner (Replacing Blockquote) */
.why-quote-banner {
  background: var(--red);
  border-radius: 16px;
  padding: 32px 48px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 10px 30px rgba(227, 33, 28, 0.2);
}
.why-quote-banner-text {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  text-align: left;
  max-width: 65%;
}
.why-quote-banner-btn {
  background: var(--green-vibrant);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--t), transform var(--t);
  box-shadow: 0 4px 12px rgba(0, 176, 67, 0.3);
  text-transform: uppercase;
}
.why-quote-banner-btn:hover {
  background: #00993a;
  transform: translateY(-2px);
}

/* ============================================================ EXECUÇÃO MONITORADA — fundo branco */
.execution-section { background: #ffffff; padding: 96px 0; color: var(--body); }
.execution-section .section-title { color: var(--text-h); text-align: center; margin-bottom: 48px; }

/* 3 Cards Row */
.execution-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.step-card {
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
  text-align: center;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.step-card-img-wrapper {
  position: relative;
  width: 125px;
  height: 125px;
  margin: 32px auto 8px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 10, 14, 0.03);
  border-radius: 24px;
}
.step-card-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.step-card-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  background: var(--red);
  color: #ffffff;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(227, 33, 28, 0.3);
}
.step-card-body {
  padding: 24px;
  flex-grow: 1;
}
.step-card-title {
  color: var(--text-h);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 10px;
}
.step-card-desc {
  color: var(--body);
  font-size: 13.5px;
  line-height: 1.6;
}

/* Bottom Split Layout */
.execution-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.execution-bottom-text {
  text-align: left;
}
.execution-bottom-text .section-title {
  text-align: left;
  margin-bottom: 20px;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.2;
}
.execution-bottom-desc {
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.execution-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.execution-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f3f6;
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-h);
}
.execution-pill-dot {
  width: 8px;
  height: 8px;
  background: var(--green-dark);
  border-radius: 50%;
}

.execution-dashboard-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.03);
  margin-top: 40px;
}
@media (max-width: 900px) {
  .execution-dashboard-box {
    padding: 32px 20px;
  }
}

/* Report Card Light Theme */
.report-card {
  background: #f8f9fb;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px;
  width: 100%;
  box-shadow: none;
}
.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.report-title-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}
.report-name {
  color: var(--text-h);
  font-weight: 800;
  font-size: 16px;
}
.report-sub {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.report-live {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,173,64,0.08);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 99px;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green-dark);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.report-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.report-row-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.report-row-info {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-h);
}
.report-row-label {
  color: var(--muted);
  font-weight: 700;
}
.report-row-badge {
  color: var(--green-dark);
  font-weight: 800;
  margin-left: 6px;
}
.report-bar-track {
  height: 6px;
  background: #f1f3f6;
  border-radius: 99px;
  overflow: hidden;
}
.report-bar-fill {
  height: 100%;
  background: var(--green-vibrant);
  border-radius: 99px;
  width: 0;
  transition: width 1.5s cubic-bezier(.16,1,.3,1);
}

.report-bottom-validation {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}
.report-bottom-validation svg {
  color: var(--green-dark);
}

/* ============================================================ RED CTA BANNER */
.details-red-banner {
  background: var(--red);
  padding: 48px 0;
  color: #ffffff;
}
.details-red-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.details-red-text {
  text-align: left;
}
.details-red-eyebrow {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}
.details-red-title {
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.2;
  margin: 0;
}
.btn-whatsapp-details {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-vibrant);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  padding: 16px 32px;
  border-radius: 8px;
  transition: background var(--t), transform var(--t);
  box-shadow: 0 4px 14px rgba(0, 176, 67, 0.3);
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-whatsapp-details:hover {
  background: #00993a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 176, 67, 0.45);
}

@media (max-width: 900px) {
  .details-red-grid {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .details-red-text {
    text-align: center;
  }
  .btn-whatsapp-details {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================ EQUIPAMENTOS — fundo branco */
.equipment-section { background: var(--bg); padding: 96px 0; }
.equipment-header  { text-align: left; margin-bottom: 48px; }
.equipment-header .section-eyebrow { color: var(--red); }

.equipment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.equip-card { border-radius: 16px; border: 1px solid var(--border); overflow: hidden; background: #fff; transition: box-shadow var(--t), transform var(--t); display: flex; flex-direction: column; }
.equip-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-2px); }

/* Badge tags overlay on image */
.equip-image-wrapper {
  position: relative;
  width: 70%;
  margin: 28px auto 0 auto;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 12px;
}
.equip-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-alt);
  transition: transform var(--t);
}
.equip-card:hover .equip-image {
  transform: scale(1.03);
}
.equip-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.equip-badge.mini {
  background: var(--blue-div); /* #0A28E0 */
}
.equip-badge.large {
  background: var(--red); /* #e3211c */
}

.equip-body  { padding: 28px; display: flex; flex-direction: column; flex: 1; text-align: left; }
.equip-title { color: var(--text-h); font-weight: 900; font-size: 22px; margin-bottom: 10px; }
.equip-desc  { color: var(--body); font-size: 14px; font-weight: 500; line-height: 1.6; margin-bottom: 22px; }

/* Specs boxes rounded gray style */
.equip-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  margin-top: auto; /* Push specs and button to bottom */
}
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #f1f3f6;
  padding: 14px 16px;
  border-radius: 8px;
  text-align: left;
}
.spec-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.spec-value {
  color: var(--text-h);
  font-size: 15px;
  font-weight: 850;
}

/* Align button at bottom */
.btn-whatsapp-card {
  margin-top: auto !important; /* Forces layout to push button to the very bottom */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-vibrant);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 14px 20px;
  border-radius: 8px;
  width: 100%;
  transition: background var(--t), transform var(--t);
  box-shadow: 0 4px 12px rgba(0, 176, 67, 0.15);
  border: none;
  cursor: pointer;
}
.btn-whatsapp-card:hover {
  background: #00993a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 176, 67, 0.25);
}

.equipment-cta { display: flex; align-items: center; justify-content: space-between; background: var(--bg-alt); padding: 24px 36px; border-radius: 16px; margin-top: 48px; border: 1px solid var(--border); }
.equipment-cta p { color: var(--text-h); font-weight: 700; font-size: 15px; margin: 0; }

/* ============================================================ CTA ESPECIALISTA — REMOVIDO/SUBSTITUÍDO */
.cta-specialist { display: none; }

/* ============================================================ FUNDAÇÃO — fundo alt claro */
.foundation-section { background: var(--bg-alt); padding: 96px 0; }

.foundation-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.foundation-text-col {
  text-align: left;
}
.foundation-text-col .section-title {
  margin-bottom: 20px;
}
.foundation-img-col {
  display: flex;
  justify-content: center;
}
.foundation-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  object-fit: cover;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.option-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform var(--t), box-shadow var(--t);
  text-align: left;
}
.option-card-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 16px;
}
.option-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t);
}
.option-card:hover .option-card-img {
  transform: scale(1.03);
}
.option-card-body {
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}
.option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.option-card.highlight {
  border: 1px solid rgba(0,0,0,0.08);
}
.option-badge {
  display: none;
}
.option-number {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}
.option-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-h);
  line-height: 1.25;
}
.option-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 12px 0;
}
.option-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-h);
}
.option-item-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-vibrant);
  color: #ffffff;
  flex-shrink: 0;
}
.option-item-dot svg {
  width: 11px;
  height: 11px;
}
.option-note {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
  margin-top: auto;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.foundation-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.foundation-cta-title {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 900;
  color: var(--text-h);
  max-width: 1100px;
  line-height: 1.2;
}
.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-vibrant);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 6px 20px rgba(0, 176, 67, 0.25);
  text-transform: uppercase;
}
.btn-whatsapp-large:hover {
  background: #00993a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 176, 67, 0.35);
}

/* ============================================================ PROVA SOCIAL — fundo branco */
.social-proof { background: var(--bg); padding: 80px 0; }
.social-proof-header { text-align: center; margin-bottom: 48px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.review-card  { background: var(--bg-alt); border-radius: 16px; padding: 28px; border: 1px solid var(--border); text-align: left; }
.review-stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text  { color: var(--body); font-size: 15px; font-weight: 500; line-height: 1.6; font-style: italic; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(0,173,64,.12); color: var(--green-dark); font-weight: 900; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.review-name  { color: var(--text-h); font-weight: 700; font-size: 14px; }
.review-role  { color: var(--muted); font-size: 12px; }

/* ============================================================ CTA FINAL — foto + overlay escuro */
.cta-final {
  position: relative; padding: 180px 0; text-align: center;
  background-size: cover; background-position: center;
  background-color: var(--bg-dark);
}
.cta-final-title { color: #fff; font-weight: 900; font-size: clamp(36px,5vw,64px); line-height: 1.05; letter-spacing: -.025em; max-width: 640px; margin: 0 auto 20px; }
.cta-final-lead  { color: rgba(255,255,255,.82); font-weight: 500; font-size: clamp(16px,1.7vw,19px); line-height: 1.55; max-width: 440px; margin: 0 auto 44px; }
.cta-final-actions { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }

/* ============================================================ SHARED TYPOGRAPHY */
.section-eyebrow { color: var(--green-dark); font-weight: 800; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.section-title   { color: var(--text-h); font-weight: 900; font-size: clamp(28px,3.6vw,46px); line-height: 1.08; letter-spacing: -.02em; }
.section-lead    { color: var(--body); font-weight: 500; font-size: clamp(15px,1.6vw,18px); line-height: 1.6; }

/* hero usa eyebrow verde claro */
.hero .section-eyebrow,
.hero .hero-eyebrow { color: #fff; }

/* stats usa eyebrow verde claro */
.cta-final .section-eyebrow { color: var(--green); }

/* ============================================================ RODAPÉ REDESIGN */
.footer-dark {
  background: var(--bg-dark); /* #0c0e13 */
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.logo-img-footer {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 13.5px;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 320px;
}
.footer-title {
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 24px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-services-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.footer-services-list li svg {
  color: var(--red);
  flex-shrink: 0;
}
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 13.5px;
  font-weight: 600;
  transition: color var(--t);
  text-decoration: none;
}
.footer-contact-item svg {
  color: rgba(255,255,255,0.4);
  transition: color var(--t);
}
.footer-contact-item:hover {
  color: #ffffff;
}
.footer-contact-item:hover svg {
  color: #ffffff;
}
.footer-wa-link {
  color: var(--green);
}
.footer-wa-link svg {
  color: var(--green);
}
.footer-wa-link:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .footer-copy {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  margin: 0;
}
.footer-bottom .footer-links {
  display: flex;
  gap: 24px;
}
.footer-bottom .footer-link {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 600;
  transition: color var(--t);
}
.footer-bottom .footer-link:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ============================================================ FLOATING WA (Simple Balloon) */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  background: #25d366; color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 28px rgba(37,211,102,.38);
  transition: opacity var(--t), transform var(--t);
  cursor: pointer;
  text-decoration: none;
}
.float-wa:hover { opacity: .92; transform: translateY(-3px); }
.float-wa svg { width: 30px; height: 30px; }

/* ============================================================ RESPONSIVE ≤ 900px */
@media (max-width: 900px) {
  .hero-bg-wrapper {
    width: 100%;
  }
  .hero-bg-gradient {
    background: linear-gradient(180deg, rgba(12,14,19,0.85) 0%, rgba(12,14,19,0.5) 50%, var(--bg-dark) 100%);
  }
  .hero-inner {
    max-width: 100%;
  }
  .features-grid-3    { grid-template-columns: repeat(2,1fr); }
  .why-quote-banner   { flex-direction: column; text-align: center; padding: 32px 24px; }
  .why-quote-banner-text { max-width: 100%; text-align: center; }
  .why-quote-banner-btn { width: 100%; justify-content: center; }
  
  .foundation-grid    { grid-template-columns: 1fr; gap: 32px; }
  .foundation-img     { max-width: 100%; }
  
  .execution-steps-row { grid-template-columns: 1fr; gap: 32px; }
  .execution-bottom-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .equipment-grid     { grid-template-columns: 1fr; }
  .equipment-cta      { flex-direction: column; text-align: center; gap: 20px; padding: 24px; }
  .options-grid       { grid-template-columns: 1fr; }
  .reviews-grid       { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: 1fr 1fr; }
  
  .header-nav .btn-cta-header { display: none; }
  .nav-address        { display: none !important; }
  .container          { padding: 0 20px; }
}

/* ============================================================ RESPONSIVE ≤ 600px */
@media (max-width: 600px) {
  .hero-content    { padding: 100px 20px 60px; }
  .why-section, .execution-section, .equipment-section, .foundation-section, .cta-final { padding: 72px 0; }
  .features-grid-3    { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: 1fr; }
  .stat-item::after   { display: none; }
  .stat-item          { border-bottom: 1px solid rgba(255,255,255,.16); padding: 32px 20px; }
  .stat-item:last-child { border-bottom: none; }
  .execution-pills-row { flex-direction: column; align-items: flex-start; }
  .execution-pill     { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================ MOBILE BOTTOM BAR */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: none;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 10px;
  text-decoration: none;
  font-family: var(--font);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  position: relative;
}

.mobile-bar-icon-wrapper {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.btn-call {
  background: #00a0e9;
  color: #ffffff;
}
.btn-call .mobile-bar-icon-wrapper {
  color: #00a0e9;
}

.btn-wa {
  background: #25d366;
  color: #ffffff;
}
.btn-wa .mobile-bar-icon-wrapper {
  color: #25d366;
}

@media (max-width: 900px) {
  .mobile-bottom-bar {
    display: flex;
  }
  body {
    padding-bottom: 64px !important;
  }
  .float-wa {
    display: none !important;
  }
}