:root {
  --red: #DC2626;
  --red-dark: #B91C1C;
  --red-deep: #7F1D1D;
  --graphite: #1F2937;
  --bg: #FAFAFA;
  --pink-wash: #FDF1F1;
  --card-bg: #FFFFFF;
  --border: #F0DEDE;
  --radius: 16px;
  --shadow-sm: 0 2px 8px rgba(31,41,55,0.06);
  --shadow-md: 0 10px 30px rgba(220,38,38,0.16);
  --whatsapp: #25D366;
  --green: #22C55E;
  --green-dark: #16A34A;
  --gold: #FBBF24;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--graphite); }
button { font-family: inherit; cursor: pointer; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { text-wrap: balance; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.hl { color: var(--red); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: #fff; border-bottom: 1px solid var(--border); }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-size: 19px; font-weight: 800; color: var(--red); letter-spacing: .01em; }
.logo-text span { color: var(--graphite); }

.header-cta {
  display: flex; align-items: center; gap: 8px; background: var(--green); color: #fff;
  font-weight: 700; font-size: 14px; padding: 11px 22px; border-radius: 999px;
  transition: background .15s;
}
.header-cta:hover { background: var(--green-dark); }
.menu-btn {
  border: none; background: none; color: var(--graphite); width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mobile-menu {
  display: none; flex-direction: column; background: #fff; border-top: 1px solid var(--border);
  padding: 8px 20px 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 4px; font-weight: 600; font-size: 15px; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }

/* ---------- Buttons ---------- */
.btn-green {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: var(--green);
  color: #fff; font-weight: 700; font-size: 15px; padding: 15px 28px; border: none; border-radius: 999px;
  transition: background .15s, transform .15s;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.08); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55); font-weight: 700; font-size: 15px; padding: 13px 26px; border-radius: 999px;
  transition: background .15s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.18); }
.btn-white {
  background: #fff; color: var(--red); font-weight: 700; font-size: 14px; border: none;
  padding: 12px 22px; border-radius: 999px; transition: transform .15s;
}
.btn-white:hover { transform: translateY(-1px); }
.btn-outline-red {
  display: inline-flex; align-items: center; background: transparent; color: var(--red);
  border: 1.5px solid var(--red); font-weight: 700; font-size: 15px; padding: 13px 26px; border-radius: 999px;
  transition: background .15s, color .15s;
}
.btn-outline-red:hover { background: var(--red); color: #fff; }
.btn-red {
  display: inline-flex; align-items: center; gap: 9px; background: var(--red-dark); color: #fff;
  font-weight: 700; font-size: 15px; padding: 15px 28px; border: none; border-radius: 999px;
  transition: background .15s, transform .15s;
}
.btn-red:hover { background: var(--red-deep); transform: translateY(-1px); }
.btn-red-bordered {
  display: inline-flex; align-items: center; gap: 9px; background: var(--red); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5); font-weight: 700; font-size: 15px; padding: 13.5px 26px; border-radius: 999px;
  transition: background .15s, transform .15s;
}
.btn-red-bordered:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ---------- Hero urgente ---------- */
.hero-urgent { position: relative; overflow: hidden; padding: 64px 20px; color: #fff; isolation: isolate; }
.hero-urgent-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.10) 0, transparent 12%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.08) 0, transparent 10%),
    radial-gradient(circle at 60% 75%, rgba(255,255,255,0.07) 0, transparent 14%),
    radial-gradient(circle at 30% 85%, rgba(255,255,255,0.06) 0, transparent 10%),
    linear-gradient(135deg, #B91C1C, var(--red-deep) 70%);
}
.hero-urgent-inner { max-width: 720px; margin: 0 auto; }
.badge-urgent {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.25); padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700; margin-bottom: 22px; color: #FDE68A;
}
.badge-urgent.light { color: #fff; background: rgba(255,255,255,0.14); }
.badge-urgent.badge-intense { color: #fff; background: var(--red); border-color: rgba(255,255,255,0.3); }
.hero-urgent h1 { font-size: 46px; font-weight: 800; line-height: 1.15; margin: 0 0 20px; }
.hero-urgent p { font-size: 17px; opacity: .92; line-height: 1.6; margin: 0 0 30px; max-width: 560px; }
.hero-urgent-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 620px; margin-top: 36px; }
.hero-benefit-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 16px 10px;
}
.hero-benefit-card svg { flex-shrink: 0; }
.hero-benefit-card span { font-size: 12.5px; font-weight: 700; line-height: 1.3; }

/* ---------- Ofertas ---------- */
.section-offers { max-width: 1200px; margin: 56px auto 0; padding: 0 20px; }
.offers-hero {
  background: linear-gradient(135deg, var(--red-deep), #4C0C0C); color: #fff; border-radius: var(--radius);
  padding: 40px 36px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; text-align: left;
}
.badge-fire {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(0,0,0,0.25); padding: 7px 16px;
  border-radius: 999px; font-size: 13px; font-weight: 700;
}
.offers-hero h2 { font-size: 32px; margin: 0; font-weight: 800; }
.offers-hero p { margin: 0; opacity: .9; font-size: 15px; }

.offers-banner {
  margin-top: 20px; background: var(--red-dark); border-radius: var(--radius); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; color: #fff;
}
.offers-banner-art {
  position: relative; background: linear-gradient(160deg, #8f1d1d, #5c0e0e);
  display: flex; align-items: center; justify-content: center; gap: 10px; padding: 30px; min-height: 220px;
}
.offers-banner-art img { width: 68px; height: 68px; filter: drop-shadow(0 8px 14px rgba(0,0,0,0.35)); }
.offers-banner-badge {
  position: absolute; top: 16px; right: 16px; background: var(--gold); color: #4C0C0C; font-weight: 800;
  font-size: 11px; text-align: center; line-height: 1.3; width: 66px; height: 66px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.offers-banner-badge strong { font-size: 18px; }
.offers-banner-text { padding: 32px 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.chip-yellow { background: var(--gold); color: #4C0C0C; font-weight: 800; font-size: 11px; padding: 5px 12px; border-radius: 999px; }
.offers-banner-text h3 { font-size: 26px; margin: 0; font-weight: 800; }
.offers-banner-text p { margin: 0; opacity: .85; font-size: 14px; }

.deals-grid {
  margin-top: 24px; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px;
}
.deal-card {
  background: linear-gradient(160deg,#FBE6E6,#F6C9C9); border-radius: var(--radius); padding: 20px;
  position: relative; display: flex; flex-direction: column; gap: 4px; overflow: hidden;
}
.deal-card.has-photo { color: #fff; min-height: 260px; justify-content: flex-end; }
.deal-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.deal-card.has-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(60,10,10,0.05) 0%, rgba(60,10,10,0.55) 55%, rgba(40,6,6,0.92) 100%);
}
.deal-card.has-photo > * { position: relative; z-index: 2; }
.deal-card.has-photo .desc { color: rgba(255,255,255,0.8); }
.deal-card.has-photo .was { color: rgba(255,255,255,0.65); }
.deal-badge {
  position: absolute; top: 14px; right: 14px; background: var(--red); color: #fff; font-weight: 800;
  font-size: 12px; padding: 4px 10px; border-radius: 999px;
}
.deal-icon {
  width: 44px; height: 44px; border-radius: 50%; background: #fff; display: flex; align-items: center;
  justify-content: center; color: var(--red); margin-bottom: 12px;
}
.deal-card .name { font-weight: 700; font-size: 15px; }
.deal-card .desc { font-size: 12.5px; color: #6b5050; margin-bottom: 8px; }
.deal-card .was { text-decoration: line-through; color: #9a7a7a; font-size: 13px; margin-right: 6px; }
.deal-card .now { color: var(--red); font-weight: 800; font-size: 19px; }
.deal-card .btn-whatsapp-mini {
  margin-top: 12px; border: none; background: var(--green); color: #fff; font-weight: 700; font-size: 12.5px;
  padding: 9px; border-radius: 10px; transition: background .15s;
}
.deal-card .btn-whatsapp-mini:hover { background: var(--green-dark); }

/* ---------- Sections generic ---------- */
.section-block { max-width: 1200px; margin: 60px auto 0; padding: 0 20px; }
.soft-bg { background: var(--pink-wash); padding-top: 50px; padding-bottom: 50px; border-radius: 28px; max-width: 1200px; }
.eyebrow { display: block; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.eyebrow.light { color: #FCA5A5; }
h2 { font-size: 30px; font-weight: 800; margin: 0 0 8px; }
h2.light { color: #fff; }
.lead { color: #6b7280; font-size: 15.5px; max-width: 560px; margin: 0 auto 30px; }
.lead.light { color: rgba(255,255,255,0.85); }

/* ---------- Categorias ---------- */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.category-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px;
  display: flex; align-items: center; gap: 14px; transition: transform .15s, box-shadow .15s;
}
.category-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.category-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--red); color: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.category-card .label { display: flex; flex-direction: column; gap: 2px; }
.category-card .label strong { font-size: 15px; }
.category-card .label span { font-size: 12.5px; color: var(--red); font-weight: 700; display: flex; align-items: center; gap: 3px; }

/* ---------- Essenciais ---------- */
.essentials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.essential-card { background: #fff; border-radius: var(--radius); padding: 22px; }
.essential-icon {
  width: 46px; height: 46px; border-radius: 50%; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.essential-card strong { display: block; font-size: 16px; margin-bottom: 4px; }
.essential-card p { margin: 0 0 12px; font-size: 13.5px; color: #6b7280; }
.essential-card button { background: none; border: none; color: var(--red); font-weight: 700; font-size: 13.5px; display: flex; align-items: center; gap: 4px; }

/* ---------- Diferenciais ---------- */
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.diff-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px;
  position: relative; overflow: hidden;
}
.diff-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--pink-wash); color: var(--red);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.diff-card strong { display: block; font-size: 17px; margin-bottom: 4px; }
.diff-card p { margin: 0; font-size: 14px; color: #6b7280; }

/* ---------- Serviços ---------- */
.section-services {
  max-width: 1200px; margin: 60px auto 0; padding: 50px 20px; background: var(--red-deep); border-radius: 28px;
}
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-card {
  background: linear-gradient(160deg, var(--red), var(--red-dark)); color: #fff; border-radius: var(--radius);
  padding: 26px; transition: transform .15s;
}
.service-card:hover { transform: translateY(-2px); }
.service-icon {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.service-card strong { display: block; font-size: 16px; margin-bottom: 4px; }
.service-card p { margin: 0; font-size: 13.5px; opacity: .85; }

/* ---------- Manipulação ---------- */
.manipulacao { text-align: left; }
.manipulacao .lead { margin-left: 0; }
.checklist { display: flex; flex-direction: column; gap: 12px; margin: 22px 0; max-width: 560px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.checklist li::before {
  content: "✓"; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--red);
  color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.manip-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.manip-art { border-radius: var(--radius); overflow: hidden; height: 260px; }
.manip-art svg { display: block; }

/* ---------- Avaliações ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p.quote { font-size: 15px; line-height: 1.6; margin: 0 0 18px; }
.testimonial-footer { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--border); padding-top: 14px; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-footer strong { display: block; font-size: 14px; }
.testimonial-footer span { font-size: 12.5px; color: #6b7280; }

/* ---------- Hero final ---------- */
.hero-final { background: linear-gradient(160deg, var(--red-deep), #3A0A0A); color: #fff; padding: 64px 20px; margin-top: 60px; }
.hero-final-inner { max-width: 680px; margin: 0 auto; }
.hero-final h2 { font-size: 34px; margin: 0 0 16px; }
.hero-final p { font-size: 16px; opacity: .88; margin: 0 0 28px; line-height: 1.6; }
.hero-final-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-final-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-final-pills span {
  display: flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.22);
  border-radius: 999px; padding: 10px 16px; font-size: 13px; font-weight: 700;
}

/* ---------- Localização ---------- */
.location { max-width: 800px; margin: 0 auto; padding: 0 20px 60px; }
.location-text {
  background: var(--graphite); color: #fff; display: flex; flex-direction: column;
  align-items: center; text-align: center; padding: 52px 44px; gap: 14px; border-radius: var(--radius);
}
.location-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #FCA5A5; }
.location-text h2 { margin: 0; font-size: 26px; line-height: 1.25; color: #fff; }
.location-address { opacity: .8; font-size: 14px; line-height: 1.6; margin: 0; }
.location-map-link {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700;
  color: #fff; opacity: .85; width: fit-content; border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px; transition: opacity .15s;
}
.location-map-link:hover { opacity: 1; }
.location-hours {
  display: flex; flex-direction: column; gap: 6px; margin: 4px 0 0; padding: 14px 0 0;
  border-top: 1px solid rgba(255,255,255,0.14); font-size: 14px; width: 100%; max-width: 300px;
}
.location-hours li { display: flex; justify-content: space-between; gap: 20px; }
.location-hours span { opacity: .7; }
.location-hours strong { font-weight: 700; }
.location-whatsapp {
  display: inline-flex; align-items: center; gap: 9px; background: var(--whatsapp); color: #fff;
  font-weight: 700; font-size: 14px; padding: 12px 22px; border-radius: 999px; margin-top: 8px; transition: filter .15s;
}
.location-whatsapp:hover { filter: brightness(1.08); }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45); z-index: 45; transition: transform .15s;
}
.whatsapp-fab:hover { transform: scale(1.06); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--graphite);
  color: #fff; padding: 12px 20px; border-radius: 999px; font-size: 13px; font-weight: 600; opacity: 0;
  pointer-events: none; transition: all .25s; z-index: 80;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Footer ---------- */
.site-footer { background: var(--graphite); color: #fff; margin-top: 0; padding: 40px 20px 20px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-logo { font-size: 19px; margin-bottom: 8px; color: #fff; }
.footer-logo span { color: #FCA5A5; }
.site-footer p { font-size: 13px; opacity: .75; margin: 4px 0; }
.site-footer strong { font-size: 13px; letter-spacing: .04em; }
.footer-note { text-align: center; max-width: 1200px; margin: 26px auto 0; opacity: .45; font-size: 11px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .header-cta span, .header-cta { font-size: 13px; padding: 10px 16px; }
  .hero-urgent h1 { font-size: 34px; }
  .diff-grid, .services-grid, .essentials-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .offers-banner { grid-template-columns: 1fr; }
  .hero-benefits { grid-template-columns: repeat(2, 1fr); max-width: 360px; }
}

@media (max-width: 640px) {
  .header-cta .label-text { display: none; }
}

@media (max-width: 480px) {
  .header-inner { padding: 10px 16px; gap: 10px; }
  .header-cta { padding: 10px 14px; font-size: 0; gap: 0; }
  .header-cta svg { width: 20px; height: 20px; }
  .hero-urgent { padding: 48px 16px; }
  .hero-urgent h1 { font-size: 28px; }
  .hero-urgent-ctas { flex-direction: column; align-items: stretch; }
  .hero-urgent-ctas a { justify-content: center; }
  .section-offers, .section-block, .section-services { padding-left: 16px; padding-right: 16px; }
  .offers-hero { padding: 28px 22px; }
  .offers-hero h2 { font-size: 25px; }
  .category-grid { grid-template-columns: 1fr; }
  .manip-ctas { flex-direction: column; align-items: stretch; }
  .manip-ctas a { justify-content: center; }
  .hero-final h2 { font-size: 26px; }
  .hero-final-ctas { flex-direction: column; align-items: stretch; }
  .hero-final-ctas a { justify-content: center; }
  .location { margin: 0; padding: 0 16px 40px; }
  .location-text { padding: 36px 24px; }
  .location-text h2 { font-size: 23px; }
  .whatsapp-fab { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}
