:root {
  --wine: #732442;
  --wine-dark: #54172f;
  --rose: #ec3c78;
  --ink: #111827;
  --muted: #5f6979;
  --surface: #f6f7f9;
  --line: #e5e7eb;
  --footer: #101827;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(229,231,235,.9);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 225px; height: auto; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-weight: 650; text-decoration: none; color: #4b5563; }
.nav a:hover, .nav a:focus-visible { color: var(--wine); }
.nav .nav-cta { color: #fff; background: var(--wine); padding: 11px 18px; border-radius: 10px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 70px;
  background:
    radial-gradient(circle at 78% 25%, rgba(236,60,120,.13), transparent 32%),
    linear-gradient(135deg, #fff 0%, #f7f2f4 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 62px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--wine); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero h1 { margin: 0 0 22px; font-size: clamp(2.35rem, 5vw, 4.5rem); line-height: 1.04; letter-spacing: -.045em; }
.hero .lead { margin: 0 0 30px; color: var(--muted); font-size: 1.18rem; max-width: 700px; }
.hero-media { position: relative; }
.hero-media::before { content: ""; position: absolute; inset: 26px -18px -18px 26px; border-radius: 28px; background: var(--wine); opacity: .12; }
.hero-media img { position: relative; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 28px; box-shadow: 0 24px 70px rgba(31,41,55,.18); }
.actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 11px 20px; border: 1px solid transparent; border-radius: 10px; font-weight: 800; text-decoration: none; transition: .2s ease; }
.button-primary { background: var(--wine); color: #fff; }
.button-primary:hover { background: var(--wine-dark); transform: translateY(-1px); }
.button-secondary { border-color: #d5c1ca; color: var(--wine); background: #fff; }
.button-secondary:hover { border-color: var(--wine); }

.breadcrumb { padding: 18px 0; color: #6b7280; font-size: .9rem; border-bottom: 1px solid var(--line); }
.breadcrumb a { color: var(--wine); text-decoration: none; }
.section { padding: 78px 0; }
.section-soft { background: var(--surface); }
.section-heading { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.section-heading h2 { margin: 0 0 12px; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.15; letter-spacing: -.025em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.content h2 { margin: 0 0 16px; font-size: clamp(1.7rem, 3vw, 2.45rem); line-height: 1.18; }
.content h3 { margin: 28px 0 8px; font-size: 1.15rem; }
.content p { color: var(--muted); }
.check-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 30px; color: #374151; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--rose); font-weight: 900; }
.info-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 16px 40px rgba(17,24,39,.06); }
.info-card h2, .info-card h3 { margin-top: 0; }
.info-card p { color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { display: flex; flex-direction: column; min-height: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 12px 35px rgba(17,24,39,.06); }
.card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.card h2, .card h3 { margin: 0 0 10px; line-height: 1.25; }
.card p { margin: 0 0 18px; color: var(--muted); }
.card a { margin-top: auto; color: var(--wine); font-weight: 800; text-decoration: none; }

.keywords { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.keywords span { padding: 7px 12px; border: 1px solid #e8d8df; border-radius: 999px; background: #faf5f7; color: var(--wine); font-size: .88rem; font-weight: 700; }
.faq { max-width: 850px; margin: 0 auto; }
.faq details { margin-bottom: 12px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.faq summary { cursor: pointer; padding: 19px 22px; font-weight: 800; }
.faq details p { margin: 0; padding: 0 22px 20px; color: var(--muted); }

.cta-band { padding: 55px 0; color: #fff; background: linear-gradient(135deg, var(--wine-dark), var(--wine)); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-inner h2 { margin: 0 0 8px; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.cta-inner p { margin: 0; color: #eadde2; }
.cta-band .button { flex: 0 0 auto; background: #fff; color: var(--wine); }

.site-footer { padding: 50px 0 28px; color: #aeb5c2; background: var(--footer); }
.footer-grid { display: grid; grid-template-columns: 1.15fr .85fr .9fr; gap: 48px; padding-bottom: 36px; }
.footer-logo { width: 250px; margin-bottom: 20px; }
.site-footer h3 { margin: 4px 0 15px; color: #fff; font-size: .9rem; letter-spacing: .07em; text-transform: uppercase; }
.site-footer p { margin: 0 0 8px; }
.site-footer a { color: #d8dce3; text-decoration: none; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #7f899b; font-size: .88rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 30; display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; color: #fff; background: #20cf68; box-shadow: 0 10px 28px rgba(0,0,0,.22); font-size: 28px; text-decoration: none; }
.whatsapp-float svg { width: 31px; height: 31px; fill: currentColor; }

@media (max-width: 900px) {
  .hero-grid, .content-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 680px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 30px, 1180px); }
  .header-inner { min-height: 70px; }
  .brand img { width: 180px; }
  .nav a:not(.nav-cta) { display: none; }
  .nav .nav-cta { padding: 9px 12px; font-size: .86rem; }
  .hero { padding: 52px 0; }
  .hero-grid { gap: 38px; }
  .section { padding: 58px 0; }
  .cards, .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}
