/* ===== Variáveis de marca ===== */
:root {
  --azul: #2E3191;
  --ciano: #00ADEE;
  --azul-esc: #23256e;
  --ciano-claro: #d9f3fd;
  --texto: #1c2340;
  --texto-suave: #5a6178;
  --bg: #ffffff;
  --bg-alt: #f4f8fd;
  --borda: #e5eaf3;
  --radius: 16px;
  --sombra: 0 12px 34px rgba(46, 49, 145, 0.10);
  --sombra-sm: 0 6px 18px rgba(46, 49, 145, 0.08);
  --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--texto);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ciano); margin-bottom: 12px;
}
h1, h2, h3 { line-height: 1.15; font-weight: 800; color: var(--azul); }

/* ===== Botões ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: .98rem; padding: 13px 26px; border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer; border: 2px solid transparent; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ciano); color: #fff; box-shadow: 0 8px 20px rgba(0,173,238,.35); }
.btn-primary:hover { background: #0098d4; }
.btn-ghost { background: transparent; color: var(--azul); border-color: var(--borda); }
.btn-ghost:hover { border-color: var(--ciano); color: var(--ciano); }
.btn-light { background: #fff; color: var(--azul); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ===== Barra de urgência ===== */
.urgency-bar {
  background: linear-gradient(90deg, var(--azul), var(--azul-esc));
  color: #fff; text-align: center; font-size: .9rem; padding: 9px 16px;
}
.urgency-bar a { color: #7fe0ff; font-weight: 700; }
.urgency-bar a:hover { text-decoration: underline; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--borda);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.logo img { height: 34px; }
.main-nav { display: flex; gap: 24px; margin-left: auto; }
.main-nav a { font-weight: 600; color: var(--texto); font-size: .95rem; }
.main-nav a:hover { color: var(--ciano); }
.header-cta { margin-left: 8px; }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #eaf6fd 0%, #f4f8fd 60%, #ffffff 100%);
  padding: 66px 0 78px;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; position: relative; z-index: 2; }
.hero-text h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); margin-bottom: 18px; }
.hero-text h1 .destaque { color: var(--ciano); }
.hero-text p { font-size: 1.12rem; color: var(--texto-suave); max-width: 34em; margin-bottom: 28px; }
.hero-text strong { color: var(--azul); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--texto-suave); font-size: .95rem; }
.hero-badges li { display: flex; align-items: center; gap: 6px; }
.hero-badges strong { color: var(--azul); }
.stars { color: #ffb100; letter-spacing: 2px; }

.hero-photo { position: relative; width: 100%; min-width: 0; }
.hero-photo img { border-radius: 24px; box-shadow: var(--sombra); width: 100%; object-fit: cover; }
.hero-video {
  width: 100%; aspect-ratio: 16 / 11; border-radius: 24px; box-shadow: var(--sombra);
  background-size: cover; background-position: center;
  align-items: center; justify-content: center;
}
.hero-video .vt-label { left: auto; right: 10px; }
.hero-photo-badge {
  position: absolute; bottom: 18px; left: -14px;
  background: #fff; border-radius: 16px; box-shadow: var(--sombra);
  padding: 14px 18px; display: flex; align-items: center; gap: 10px;
}
.hpb-num { font-size: 1.8rem; font-weight: 800; color: var(--ciano); line-height: 1; }
.hpb-label { font-size: .78rem; font-weight: 600; color: var(--texto-suave); line-height: 1.2; }

.cloud { position: absolute; opacity: .8; z-index: 1; pointer-events: none; animation: float 8s ease-in-out infinite; }
.cloud-1 { width: 130px; top: 8%; left: 4%; }
.cloud-2 { width: 90px; top: 60%; left: 40%; animation-delay: -3s; opacity: .55; }
.cloud-3 { width: 160px; bottom: 6%; right: 6%; animation-delay: -5s; opacity: .5; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* ===== Stats ===== */
.stats { background: var(--azul); color: #fff; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 38px 24px; text-align: center; }
.stat-num { display: block; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; }
.stat-label { font-size: .95rem; color: #bfc3ec; }

/* ===== Section head ===== */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.section-sub { color: var(--texto-suave); margin-top: 12px; }

/* ===== Problema / Agitação ===== */
.problem { padding: 84px 0; background: var(--bg-alt); }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 34px; }
.pain {
  background: #fff; border: 1px solid var(--borda); border-top: 4px solid var(--ciano);
  border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--sombra-sm);
}
.pain-ico { font-size: 1.9rem; display: block; margin-bottom: 12px; }
.pain h3 { font-size: 1.12rem; margin-bottom: 8px; }
.pain p { color: var(--texto-suave); font-size: .95rem; }
.problem-cta { text-align: center; font-size: 1.2rem; color: var(--texto); max-width: 40em; margin: 0 auto 26px; }
.problem-cta strong { color: var(--azul); }

/* ===== Serviços com vídeo ===== */
.services { padding: 84px 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--bg); border: 1px solid var(--borda); border-radius: var(--radius);
  box-shadow: var(--sombra-sm); overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sombra); border-color: var(--ciano); }
.card-body { padding: 22px 24px 26px; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card-body p { color: var(--texto-suave); font-size: .98rem; }
.card-link { display: inline-block; margin-top: 14px; color: var(--ciano); font-weight: 700; }

/* thumbnail de vídeo */
.video-thumb {
  position: relative; width: 100%; aspect-ratio: 16 / 9; border: none; cursor: pointer;
  background: linear-gradient(150deg, var(--azul) 0%, var(--ciano) 130%);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.video-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 45%, transparent 40%, rgba(35,37,110,.35) 100%);
}
.vt-ico { font-size: 2.8rem; opacity: .9; filter: drop-shadow(0 2px 6px rgba(0,0,0,.25)); }
.vt-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.95);
  box-shadow: 0 8px 22px rgba(0,0,0,.25); z-index: 2;
  transition: transform .15s ease, background .15s ease;
}
.vt-play::before {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent var(--azul);
}
.video-thumb:hover .vt-play { transform: translate(-50%, -50%) scale(1.1); }
.vt-label {
  position: absolute; bottom: 10px; left: 10px; z-index: 2;
  background: rgba(0,0,0,.45); color: #fff; font-size: .78rem; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
}

/* ===== Reciclagem ===== */
.recycle { padding: 84px 0; background: linear-gradient(160deg, #eef7ff, #f4f8fd); }
.recycle-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: start; }
.recycle-text h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 16px; }
.recycle-text > p { color: var(--texto-suave); margin-bottom: 24px; }
.recycle-when { background: #fff; border: 1px solid var(--borda); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--sombra-sm); margin-bottom: 26px; }
.recycle-when h3 { font-size: 1.1rem; margin-bottom: 14px; }
.recycle-steps { background: #fff; border-radius: var(--radius); box-shadow: var(--sombra); padding: 30px 28px; }
.recycle-steps-title { font-size: 1.25rem; margin-bottom: 20px; }
.steps-list { list-style: none; display: grid; gap: 18px; }
.steps-list li { display: flex; gap: 14px; align-items: flex-start; }
.steps-list strong { color: var(--azul); }
.steps-list p { color: var(--texto-suave); font-size: .95rem; }
.step-n {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--ciano); color: #fff; font-weight: 800;
  display: grid; place-items: center;
}
.recycle-note { margin-top: 22px; background: var(--ciano-claro); border-radius: 12px; padding: 14px 18px; font-size: .95rem; color: var(--azul-esc); }

/* ===== Lista de check reutilizável ===== */
.check-list { list-style: none; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 34px; color: var(--texto); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ciano); color: #fff; font-size: .8rem; font-weight: 700;
  display: grid; place-items: center;
}

/* ===== Como funciona ===== */
.how { padding: 84px 0; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.how-step { text-align: center; padding: 30px 24px; border-radius: var(--radius); background: var(--bg-alt); position: relative; }
.how-n {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--azul); color: #fff; font-size: 1.4rem; font-weight: 800;
  display: grid; place-items: center;
}
.how-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.how-step p { color: var(--texto-suave); font-size: .97rem; }

/* ===== Por que / garantia ===== */
.why { padding: 84px 0; background: var(--bg-alt); }
.why-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.about-photo {
  position: relative; padding: 12px; border-radius: 30px;
  background: linear-gradient(150deg, var(--azul) 0%, var(--ciano) 100%);
  box-shadow: var(--sombra);
}
.about-photo::after {
  content: "📍 Nossa sede"; position: absolute; bottom: 22px; left: 22px;
  background: #fff; color: var(--azul); font-weight: 700; font-size: .85rem;
  padding: 7px 14px; border-radius: 999px; box-shadow: var(--sombra-sm);
}
.about-photo img { border-radius: 20px; box-shadow: none; display: block; width: 100%; }
.about-text h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 16px; }
.about-text > p { color: var(--texto-suave); margin-bottom: 22px; }
.about-text .check-list { margin-bottom: 24px; }
.guarantee { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px dashed var(--ciano); border-radius: 12px; padding: 16px 18px; margin-bottom: 24px; }
.guarantee-ico { font-size: 1.8rem; }
.guarantee strong { color: var(--azul); }

/* ===== Depoimentos ===== */
.testimonials { padding: 84px 0; }
.quote { background: var(--bg); border: 1px solid var(--borda); border-radius: var(--radius); padding: 28px; box-shadow: var(--sombra-sm); }
.quote-stars { color: #ffb100; letter-spacing: 2px; display: block; margin-bottom: 12px; }
.quote p { color: var(--texto); font-style: italic; margin-bottom: 20px; }
.quote-author { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--azul); }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--ciano); color: #fff; display: grid; place-items: center; font-weight: 700; }

/* ===== Avaliações / mídia ===== */
.reviews { padding: 84px 0; background: var(--bg-alt); }
.reviews .cards { margin-top: 40px; }
.reviews-widget { margin-top: 34px; }
.reviews-sub { text-align: center; font-size: 1.3rem; color: var(--azul); margin: 46px 0 22px; }
.google-rating {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--borda); border-radius: var(--radius);
  padding: 20px 26px; box-shadow: var(--sombra-sm); max-width: 720px; margin: 0 auto;
}
.gr-left { display: flex; align-items: center; gap: 14px; }
.gr-badge {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: 1.4rem; color: #fff;
  background: conic-gradient(from -45deg, #4285F4, #34A853, #FBBC05, #EA4335, #4285F4);
}
.gr-info { display: flex; flex-direction: column; }
.gr-nota { font-size: 1.1rem; color: var(--texto); }
.gr-nota strong { font-size: 1.5rem; color: var(--azul); }
.gr-nota .stars { font-size: 1rem; }
.gr-qtd { font-size: .85rem; color: var(--texto-suave); }

.video-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.video-thumb-gal {
  aspect-ratio: 16 / 9; border-radius: var(--radius); background-size: cover; background-position: center;
  box-shadow: var(--sombra-sm);
}
.video-thumb-gal .vt-label { background: rgba(0,0,0,.6); }

.photo-gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.photo-item {
  border: none; padding: 0; cursor: pointer; border-radius: 12px; overflow: hidden;
  aspect-ratio: 3 / 4; background: #e6edf6; box-shadow: var(--sombra-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.photo-item:hover { transform: translateY(-3px); box-shadow: var(--sombra); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Lightbox de imagem */
.img-lightbox { position: fixed; inset: 0; z-index: 110; display: none; align-items: center; justify-content: center; padding: 30px; }
.img-lightbox.open { display: flex; }
.img-lightbox-backdrop { position: absolute; inset: 0; background: rgba(10,12,45,.85); backdrop-filter: blur(3px); }
.img-lightbox img { position: relative; z-index: 2; max-width: min(92vw, 560px); max-height: 88vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.img-lightbox-close { position: absolute; top: 18px; right: 22px; z-index: 3; width: 44px; height: 44px; border: none; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--azul); font-size: 1.8rem; cursor: pointer; }
.img-nav { position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: none; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--azul); font-size: 2rem; line-height: 1; cursor: pointer; }
.img-nav:hover { background: #fff; }
.img-prev { left: 18px; }
.img-next { right: 18px; }

/* ===== Local / mapa ===== */
.local { padding: 84px 0; }
.local-map { max-width: 900px; margin: 0 auto; text-align: center; }
.local-map iframe { width: 100%; height: 380px; border: 0; border-radius: var(--radius); box-shadow: var(--sombra); margin-bottom: 22px; }
.map-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  height: 300px; border-radius: var(--radius); margin-bottom: 22px; text-align: center; padding: 24px;
  color: #fff; box-shadow: var(--sombra);
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.12) 0 12px, transparent 13px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.10) 0 10px, transparent 11px),
    linear-gradient(150deg, var(--azul) 0%, var(--ciano) 120%);
  transition: transform .15s ease, box-shadow .15s ease;
}
.map-card:hover { transform: translateY(-3px); box-shadow: var(--sombra); }
.map-card .map-pin { font-size: 3rem; }
.map-card strong { font-size: 1.2rem; max-width: 24em; }
.map-card .map-open { font-size: .95rem; opacity: .92; background: rgba(255,255,255,.18); padding: 8px 16px; border-radius: 999px; }

/* ===== FAQ ===== */
.faq { padding: 84px 0; background: var(--bg-alt); }
.faq-narrow { max-width: 780px; }
.faq-item { background: #fff; border: 1px solid var(--borda); border-radius: 12px; padding: 4px 22px; margin-bottom: 14px; }
.faq-item summary { cursor: pointer; font-weight: 700; color: var(--azul); padding: 16px 0; list-style: none; position: relative; padding-right: 30px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 12px; font-size: 1.4rem; color: var(--ciano); font-weight: 700; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--texto-suave); padding: 0 0 18px; }
.faq-item a { color: var(--ciano); font-weight: 600; }

/* ===== CTA band ===== */
.cta-band { background: linear-gradient(120deg, var(--azul) 0%, var(--ciano) 100%); color: #fff; text-align: center; padding: 70px 0; }
.cta-inner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 22em; margin: 0 auto 14px; }
.cta-inner p { color: rgba(255,255,255,.92); margin-bottom: 28px; }
.cta-micro { display: block; margin-top: 18px; font-size: .9rem; color: rgba(255,255,255,.85); }

/* ===== Contato ===== */
.contact { padding: 84px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact-text h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.contact-text p { color: var(--texto-suave); margin-bottom: 24px; }
.contact-list { list-style: none; display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 1.05rem; }
.contact-list .ci { font-size: 1.2rem; }
.contact-list a:hover { color: var(--ciano); }
.contact-card { background: var(--bg-alt); border-radius: var(--radius); padding: 36px; box-shadow: var(--sombra); text-align: center; }
.contact-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.contact-card p { color: var(--texto-suave); margin-bottom: 24px; }

/* ===== Footer ===== */
.site-footer { background: var(--azul-esc); color: #fff; padding: 44px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer-logo { height: 38px; }
.footer-legal { color: #b9bce6; font-size: .9rem; }

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 22px rgba(37,211,102,.5);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ===== Modal de vídeo ===== */
.video-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.video-modal.open { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(15,17,60,.72); backdrop-filter: blur(3px); }
.video-modal-box { position: relative; z-index: 2; width: 100%; max-width: 820px; background: #fff; border-radius: 18px; padding: 22px; box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.video-modal-title { font-size: 1.3rem; margin-bottom: 16px; padding-right: 40px; }
.video-modal-close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border-radius: 50%; border: none; background: var(--bg-alt); color: var(--azul); font-size: 1.6rem; line-height: 1; cursor: pointer; }
.video-modal-close:hover { background: var(--ciano); color: #fff; }
.video-modal-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; background: #000; }
.video-modal-frame iframe, .video-modal-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(150deg, var(--azul), var(--ciano)); color: #fff; text-align: center; padding: 24px;
}
.video-placeholder .vp-ico { font-size: 3rem; }
.video-placeholder p { max-width: 30em; opacity: .95; }
.video-placeholder .vp-cta { margin-top: 6px; }

/* ===== Responsivo ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-photo { order: -1; max-width: 440px; margin: 0 auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .why-inner, .contact-inner, .recycle-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 460px; margin: 0 auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .video-gallery { grid-template-columns: repeat(2, 1fr); }
  .photo-gallery { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .how-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .video-gallery { grid-template-columns: 1fr; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .header-cta { display: none; }
  .btn-lg { padding: 14px 24px; }
  .urgency-bar { font-size: .82rem; }
}
