@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap");

:root {
  --navy-950: #0a2438;
  --navy-900: #123a5a;
  --navy-800: #194d73;
  --blue-600: #1684a7;
  --blue-100: #dff3f7;
  --blue-50: #f2fafc;
  --yellow-500: #f3c447;
  --yellow-100: #fff4cd;
  --ink: #142a3a;
  --muted: #5f7180;
  --line: #dbe5eb;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(18, 58, 90, 0.13);
  --shadow-soft: 0 14px 34px rgba(18, 58, 90, 0.09);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

button,
input,
textarea { font: inherit; }

button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-950);
  transition: top 0.2s ease;
}

.skip-link:focus { top: 16px; }

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-950);
  font-family: "Manrope", "DM Sans", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 { max-width: 740px; font-size: clamp(2.55rem, 5vw, 4.85rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
p { margin: 0; }

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-600);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-light { color: #9fe0ee; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--navy-900);
  border-radius: 999px;
  padding: 12px 22px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 8px 20px rgba(18, 58, 90, 0.16);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover { transform: translateY(-2px); background: var(--navy-800); box-shadow: 0 12px 26px rgba(18, 58, 90, 0.22); }
.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible { outline: 3px solid var(--yellow-500); outline-offset: 3px; }
.button-small { min-height: 44px; padding: 10px 18px; }
.button-secondary { color: var(--navy-900); background: var(--white); box-shadow: none; }
.button-secondary:hover { color: var(--white); }
.button-wide { width: 100%; }
.button-light { border-color: var(--white); color: var(--navy-950); background: var(--white); }
.button-light:hover { border-color: var(--yellow-500); background: var(--yellow-500); }
.button-outline-light { border-color: rgba(255,255,255,.65); color: var(--white); background: transparent; box-shadow: none; }
.button-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.button-whatsapp { border-color: #1f9d63; background: #1f9d63; }
.button-whatsapp:hover { background: #167c4d; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 229, 235, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-600), var(--navy-900));
  box-shadow: 0 0 0 2px var(--blue-600), 0 7px 14px rgba(18, 58, 90, 0.16);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { color: var(--navy-950); font-family: "Manrope", sans-serif; font-size: 1.05rem; }
.brand-copy small { margin-top: 3px; color: var(--muted); font-size: 0.76rem; }

.site-nav { display: flex; align-items: center; gap: 25px; }
.site-nav > a:not(.button) { position: relative; color: var(--ink); font-size: 0.93rem; font-weight: 600; text-decoration: none; }
.site-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; border-radius: 2px; background: var(--blue-600); content: ""; transform: scaleX(0); transition: transform 0.2s ease; }
.site-nav > a:not(.button):hover::after { transform: scaleX(1); }

.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.menu-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--navy-950); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 66px;
  background:
    radial-gradient(circle at 8% 14%, rgba(22, 132, 167, .1), transparent 30%),
    linear-gradient(180deg, #f7fcfd 0%, #ffffff 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 370px;
  height: 370px;
  border: 60px solid rgba(243, 196, 71, 0.13);
  border-radius: 50%;
  content: "";
}

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 54px; }
.hero-copy { padding: 20px 0; }
.hero-lead { max-width: 640px; margin-top: 24px; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 15px 23px; margin: 30px 0 0; padding: 0; color: var(--muted); font-size: .91rem; list-style: none; }
.trust-list li { display: flex; align-items: center; gap: 7px; }
.trust-list svg { width: 18px; height: 18px; border-radius: 50%; padding: 3px; fill: none; stroke: var(--navy-900); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.5; background: var(--yellow-100); }

.hero-visual { position: relative; min-height: 570px; }
.hero-visual > img { width: 100%; height: 570px; border-radius: 120px 26px 26px 26px; box-shadow: var(--shadow); object-fit: cover; object-position: 55% center; }
.hero-card { position: absolute; right: -22px; bottom: 28px; display: flex; min-width: 250px; align-items: center; gap: 13px; border: 1px solid rgba(255,255,255,.75); border-radius: 18px; padding: 15px 18px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-soft); backdrop-filter: blur(10px); }
.hero-card-icon { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; color: var(--navy-900); background: var(--yellow-100); }
.hero-card svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.hero-card span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.hero-card strong { font-size: .96rem; }
.hero-card small { margin-top: 3px; color: var(--muted); }

.quick-contact { color: var(--white); background: var(--navy-950); }
.quick-contact-grid { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 22px; }
.quick-contact-grid div { display: flex; align-items: center; gap: 14px; }
.quick-contact a { color: #b8e8f0; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.section { padding: 100px 0; scroll-margin-top: 80px; }
.section-tint { background: var(--blue-50); }
.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-heading > p:last-child { margin-top: 16px; color: var(--muted); font-size: 1.08rem; }
.section-heading-left { margin-inline: 0; text-align: left; }

.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.service-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 42px; background: var(--white); box-shadow: var(--shadow-soft); }
.service-card::after { position: absolute; top: -62px; right: -62px; width: 160px; height: 160px; border-radius: 50%; background: var(--blue-50); content: ""; }
.service-card-primary { border-color: #bedde5; background: linear-gradient(145deg, #f0fafc 0%, #fff 68%); }
.service-icon { position: relative; z-index: 1; display: grid; width: 58px; height: 58px; place-items: center; border-radius: 17px; color: var(--navy-900); background: var(--blue-100); }
.service-icon-warm { color: #6d4d00; background: var(--yellow-100); }
.service-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.75; }
.card-kicker { margin: 25px 0 7px; color: var(--blue-600); font-size: .8rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.service-card h3 { margin-bottom: 14px; }
.service-card > p:not(.card-kicker) { color: var(--muted); }
.check-list { display: grid; gap: 9px; margin: 27px 0 30px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 26px; }
.check-list li::before { position: absolute; top: .31em; left: 0; width: 16px; height: 16px; border-radius: 50%; color: var(--navy-900); background: var(--yellow-100); content: "✓"; font-size: .72rem; font-weight: 800; line-height: 16px; text-align: center; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--navy-900); font-weight: 800; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.repassage-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 34px; }
.repassage-detail div { border-radius: 14px; padding: 16px; background: #f6f8fa; }
.repassage-detail span,
.repassage-detail small { display: block; }
.repassage-detail span { color: var(--navy-950); font-weight: 800; }
.repassage-detail small { margin-top: 2px; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; padding: 0; list-style: none; }
.steps li { position: relative; border-top: 3px solid var(--navy-900); padding: 27px 24px 10px 0; }
.steps li > span { display: inline-block; margin-bottom: 24px; color: var(--blue-600); font-family: "Manrope", sans-serif; font-size: 1.05rem; font-weight: 800; }
.steps h3 { margin-bottom: 11px; font-size: 1.32rem; letter-spacing: -.02em; }
.steps p { color: var(--muted); }

.area-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: start; gap: 70px; }
.area-lead { max-width: 660px; margin-top: 18px; color: var(--muted); font-size: 1.1rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.area-tags span { border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; color: var(--navy-900); background: var(--white); font-weight: 600; }
.area-note { margin-top: 24px; color: var(--muted); font-size: .93rem; }
.hours-card { border: 1px solid #cbe5eb; border-radius: var(--radius-lg); padding: 34px; background: var(--blue-50); box-shadow: var(--shadow-soft); }
.hours-top { display: flex; align-items: center; gap: 18px; }
.hours-top .card-kicker { margin: 0 0 6px; }
.hours-top h3 { font-size: 1.55rem; }
.hours-list { margin: 28px 0 30px; }
.hours-list > div { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid #cfe1e6; padding: 13px 0; }
.hours-list dt { color: var(--muted); }
.hours-list dd { margin: 0; color: var(--navy-950); font-weight: 700; }

.pricing-section { position: relative; overflow: hidden; color: var(--white); background: var(--navy-900); }
.pricing-section::before { position: absolute; top: -110px; left: -90px; width: 330px; height: 330px; border: 60px solid rgba(255,255,255,.055); border-radius: 50%; content: ""; }
.pricing-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 80px; }
.pricing-grid h2 { color: var(--white); }
.pricing-grid > div:first-child > p:not(.eyebrow) { max-width: 670px; margin: 22px 0 30px; color: #d5e6ef; font-size: 1.08rem; }
.price-card { border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); padding: 35px; background: rgba(255,255,255,.1); box-shadow: 0 20px 50px rgba(0,0,0,.12); backdrop-filter: blur(8px); }
.price-card > p:first-child { color: #b8d8e7; font-weight: 600; }
.price-card strong { display: block; margin: 2px 0; color: var(--yellow-500); font-family: "Manrope", sans-serif; font-size: clamp(3.3rem, 6vw, 5.2rem); letter-spacing: -.06em; line-height: 1.05; }
.price-card > span { color: #d9e8ef; }
.price-card hr { margin: 28px 0; border: 0; border-top: 1px solid rgba(255,255,255,.18); }
.price-tax { color: var(--white); font-weight: 600; }
.price-note { margin-top: 12px; color: #c2d7e2; font-size: .9rem; }

.request-section { background: #f7f9fa; }
.request-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 70px; }
.request-copy { position: sticky; top: 120px; }
.request-copy > p:not(.eyebrow) { margin-top: 19px; color: var(--muted); font-size: 1.08rem; }
.contact-stack { display: grid; gap: 12px; margin-top: 34px; }
.contact-stack > a { display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 15px; padding: 14px; background: var(--white); text-decoration: none; transition: border-color .2s ease, transform .2s ease; }
.contact-stack > a:hover { border-color: var(--blue-600); transform: translateY(-2px); }
.contact-stack > a > span:first-child { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 12px; color: var(--navy-900); background: var(--blue-100); }
.contact-stack svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.contact-stack a > span:last-child { display: flex; min-width: 0; flex-direction: column; }
.contact-stack small { color: var(--muted); }
.contact-stack strong { overflow-wrap: anywhere; color: var(--navy-950); font-size: .94rem; }

.request-form { display: grid; gap: 21px; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; background: var(--white); box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.request-form label,
.request-form legend { color: var(--navy-950); font-size: .91rem; font-weight: 700; }
.request-form input:not([type="checkbox"]):not([type="radio"]),
.request-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #c7d4dc;
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfe;
  font-size: 1rem;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.request-form textarea { resize: vertical; }
.request-form input:focus,
.request-form textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(22,132,167,.15); }
.request-form fieldset { margin: 0; border: 0; padding: 0; }
.choice-grid { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 10px; }
.choice-grid label { display: flex; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 999px; padding: 8px 13px; color: var(--muted); background: #fbfdfe; cursor: pointer; }
.choice-grid label:has(input:checked) { border-color: var(--blue-600); color: var(--navy-950); background: var(--blue-100); }
.choice-grid input { accent-color: var(--navy-900); }
.form-privacy { color: var(--muted); font-size: .82rem; line-height: 1.5; }
.form-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.form-status { min-height: 1px; color: #a13a27; font-size: .9rem; font-weight: 600; }
.form-status.is-success { color: #177245; }

.contact-section { padding-top: 0; background: #f7f9fa; }
.contact-panel { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 45px; border-radius: var(--radius-lg); padding: 52px; color: var(--white); background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); box-shadow: var(--shadow); }
.contact-panel h2 { color: var(--white); }
.contact-panel p:not(.eyebrow) { max-width: 650px; margin-top: 16px; color: #d1e2eb; }
.contact-buttons { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.site-footer { padding: 42px 0 24px; color: #b7c7d1; background: #071b2a; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; align-items: center; gap: 30px; }
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand .brand-copy small { color: #b7c7d1; }
.footer-grid > p { font-size: .91rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 21px; font-size: .82rem; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; align-items: stretch; border-bottom: 1px solid var(--line); padding: 14px 20px 22px; background: var(--white); box-shadow: 0 18px 28px rgba(18,58,90,.1); }
  .site-nav.is-open { display: grid; gap: 3px; }
  .site-nav > a:not(.button) { border-radius: 9px; padding: 10px; }
  .site-nav > a:not(.button):hover { background: var(--blue-50); }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button { margin-top: 8px; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
  .hero { padding-top: 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 480px; }
  .hero-visual > img { height: 480px; border-radius: 70px 24px 24px 24px; }
  .hero-card { right: 20px; }
  .area-grid,
  .pricing-grid,
  .request-grid { grid-template-columns: 1fr; gap: 45px; }
  .request-copy { position: static; }
  .pricing-grid { gap: 35px; }
  .price-card { max-width: 540px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > p:last-child { grid-column: 2; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-copy small { display: none; }
  .header-inner { min-height: 70px; }
  .brand-mark { width: 44px; height: 44px; font-size: .8rem; }
  .hero { padding: 42px 0 44px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; gap: 9px; }
  .hero-visual { min-height: 365px; }
  .hero-visual > img { height: 365px; border-radius: 55px 18px 18px 18px; object-position: 57% center; }
  .hero-card { right: 12px; bottom: 14px; left: 12px; min-width: 0; }
  .quick-contact-grid { min-height: 0; flex-direction: column; align-items: flex-start; padding-block: 20px; }
  .quick-contact-grid div { flex-wrap: wrap; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 35px; text-align: left; }
  .service-grid,
  .steps { grid-template-columns: 1fr; }
  .service-card { padding: 29px; }
  .steps { gap: 17px; }
  .steps li { display: grid; grid-template-columns: 45px 1fr; gap: 12px; padding: 22px 0 0; }
  .steps li > span { margin: 1px 0 0; }
  .hours-card { padding: 26px; }
  .hours-list > div { flex-direction: column; gap: 2px; }
  .request-form { padding: 25px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { display: grid; }
  .contact-panel { grid-template-columns: 1fr; gap: 30px; padding: 34px 26px; }
  .contact-buttons { display: grid; justify-content: stretch; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > p:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
