:root {
  --red: #d8242f;
  --red-dark: #a9131d;
  --blue: #0d4d84;
  --blue-dark: #07345b;
  --yellow: #f4c62d;
  --cream: #fff8e7;
  --ink: #10253d;
  --white: #fffdf7;
  --line: #e7d9bd;
  --shadow: 0 14px 34px rgba(16, 37, 61, 0.12);
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Trebuchet MS', Arial, sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(1160px, calc(100% - 36px));
  margin: auto;
}
.narrow {
  width: min(850px, calc(100% - 36px));
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: white;
  padding: 10px;
  z-index: 999;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 231, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 37, 61, 0.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 120px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 800;
}
.nav a {
  text-decoration: none;
}
.nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.nav-cta {
  background: var(--red);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
}
.nav-cta:hover {
  text-decoration: none !important;
  background: var(--red-dark);
}
.nav-toggle {
  display: none;
  border: 0;
  background: var(--yellow);
  font-size: 25px;
  border-radius: 12px;
  padding: 7px 11px;
  color: var(--ink);
}
.hero {
  overflow: hidden;
  padding: 54px 0 64px;
  background: linear-gradient(180deg, #fffaf0 0%, #fff3c9 100%);
  border-bottom: 8px solid var(--yellow);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 34px;
}
.eyebrow,
.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 10px;
}
h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.06;
}
h1,
h2 {
  font-family: Georgia, 'Times New Roman', serif;
}
h1 {
  font-size: clamp(3rem, 6vw, 5.9rem);
  letter-spacing: -0.045em;
  margin-bottom: 22px;
}
h1 span {
  color: var(--red);
  text-shadow: 3px 3px 0 var(--yellow);
}
h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
}
.hero-text {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: Impact, 'Arial Black', sans-serif;
  letter-spacing: 0.03em;
  border-radius: 12px;
  padding: 14px 22px;
  min-height: 52px;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition:
    0.16s transform,
    0.16s box-shadow;
}
.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}
.btn-primary {
  background: var(--red);
  color: white;
}
.btn-secondary {
  background: var(--yellow);
  color: var(--ink);
}
.btn-whatsapp {
  background: #20b95a;
  color: white;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-weight: 800;
  font-size: 0.93rem;
}
.trust-row span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
}
.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}
.hero-mark img {
  position: relative;
  width: min(100%, 560px);
  filter: drop-shadow(0 18px 24px rgba(16, 37, 61, 0.18));
  z-index: 2;
}

.section {
  padding: 84px 0;
}
.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}
.section-head.compact {
  margin-bottom: 28px;
}
.section-head p {
  font-size: 1.05rem;
}
.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 7px 7px 0 var(--yellow);
}
.service-card .icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.section-yellow {
  background: var(--yellow);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 7px 7px 0 rgba(16, 37, 61, 0.18);
}
.price-card.featured {
  transform: rotate(-0.4deg);
}
.price-card.accent {
  background: #fff0ef;
}
.price-label {
  font-family: Impact, 'Arial Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  font-size: 1.1rem;
}
.price-big {
  font-family: Georgia, serif;
  font-size: 1.55rem;
  margin: 10px 0 14px;
}
.price-big strong {
  color: var(--red);
  font-size: 2rem;
}
.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.price-card li {
  padding: 9px 0;
  border-top: 1px dashed #ceb94b;
  font-weight: 800;
}
.included {
  margin-top: 28px;
  background: var(--blue);
  color: white;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px;
}
.included h3 {
  font-family: Impact, 'Arial Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.included-grid span {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-weight: 800;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  position: relative;
  padding: 24px 22px 22px 74px;
  background: white;
  border-bottom: 5px solid var(--red);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.step > span {
  position: absolute;
  left: 18px;
  top: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--ink);
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.2rem;
}
.step h3 {
  margin: 0 0 8px;
}
.about {
  background: #fffdf7;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 54px;
}
.about-badge {
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 50%;
  padding: 22px;
  box-shadow: 10px 10px 0 var(--red);
}
.about-badge img {
  aspect-ratio: 1/1;
  object-fit: contain;
}
.about p {
  font-size: 1.08rem;
  max-width: 700px;
}
.quote {
  font-family: Georgia, serif;
  font-weight: 800;
  color: var(--red);
  font-size: 1.5rem !important;
}
.section-blue {
  background: var(--blue);
  color: white;
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
}
.section-head.light .kicker {
  color: var(--yellow);
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  background: #fffaf0;
  color: var(--ink);
  border-radius: 14px;
  padding: 0 18px;
  border: 2px solid var(--ink);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  padding: 17px 0;
}
.faq-list p {
  margin: 0 0 18px;
}
.contact {
  background: linear-gradient(120deg, #fff8e7, #fff0b3);
}
.contact-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  background: white;
  border: 4px solid var(--ink);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 10px 10px 0 var(--red);
}
.contact-actions {
  display: grid;
  gap: 12px;
}
.contact-actions small {
  opacity: 0.7;
}
.footer {
  background: #081f36;
  color: white;
  padding: 28px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer p {
  margin: 0.3rem 0 0;
  opacity: 0.8;
}
.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a {
  color: white;
}
.legal {
  padding: 70px 0;
  max-width: 850px;
}
.legal h1 {
  font-size: 3rem;
}
.legal-note {
  background: #fff0b3;
  border-left: 7px solid var(--red);
  padding: 16px 18px;
  border-radius: 8px;
  margin-bottom: 28px;
}
.placeholder {
  background: #fff0f0;
  border: 2px dashed var(--red);
  padding: 2px 6px;
  border-radius: 4px;
}
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    background: white;
    border: 3px solid var(--ink);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    text-align: center;
  }
  .hero-grid,
  .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }
  .hero-mark {
    min-height: auto;
  }
  .hero-mark img {
    max-width: 480px;
  }
  .cards.three,
  .price-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-badge {
    max-width: 430px;
    margin: auto;
  }
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, 1160px);
  }
  .brand img {
    width: 102px;
  }
  .hero {
    padding-top: 34px;
  }
  .hero-grid {
    gap: 12px;
  }
  .hero-mark {
    margin-top: 16px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .section {
    padding: 62px 0;
  }
  .included-grid {
    grid-template-columns: 1fr;
  }
  .contact-box {
    padding: 24px 18px;
  }
  .btn {
    width: 100%;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
