:root {
  --red: #d90b1c;
  --red-dark: #aa0714;
  --red-soft: #fff0f1;
  --ink: #15171a;
  --muted: #656a72;
  --line: #e9e9e9;
  --paper: #ffffff;
  --off-white: #f7f7f5;
  --green: #169c50;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(24, 24, 27, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 1.25em; height: 1.25em; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 999;
  background: var(--ink); color: white; padding: 12px 16px; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.topbar { background: var(--ink); color: #d8d8da; font-size: 12px; font-weight: 600; }
.topbar-inner { height: 36px; display: flex; justify-content: space-between; align-items: center; }
.topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { color: #ff3645; width: 14px; }

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(0,0,0,.06); backdrop-filter: blur(16px);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.nav-wrap { height: 86px; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img {
  width: 60px; height: 60px; object-fit: contain; border-radius: 50%;
  mix-blend-mode: multiply;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font: 700 18px/1 "Space Grotesk", sans-serif; letter-spacing: -.6px; }
.brand-copy strong em { color: var(--red); font-style: normal; }
.brand-copy small { margin-top: 7px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: 2.1px; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { position: relative; font-size: 13px; font-weight: 700; }
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px;
  background: var(--red); transition: width .2s ease;
}
.desktop-nav a:hover::after { width: 100%; }
.header-call { display: flex; align-items: center; gap: 10px; padding-left: 24px; border-left: 1px solid var(--line); }
.header-call-icon {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  color: white; background: var(--red);
}
.header-call span:last-child { display: flex; flex-direction: column; }
.header-call small { color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.header-call strong { margin-top: 2px; font-size: 14px; }
.menu-toggle { display: none; border: 0; padding: 8px; background: none; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: var(--ink); transition: .2s ease; }
.mobile-nav { display: none; }

.hero { position: relative; overflow: hidden; background: var(--off-white); }
.hero-grid-pattern {
  position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image: linear-gradient(rgba(0,0,0,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}
.hero-inner { position: relative; min-height: 650px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 58px; padding-block: 64px 72px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: 2.5px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.eyebrow span { width: 28px; height: 2px; background: var(--red); }
.hero h1, .section-heading h2, .why-copy h2, .contact-copy h2 {
  margin: 0; font: 600 68px/.99 "Space Grotesk", sans-serif; letter-spacing: -4.2px;
}
.hero h1 em, .section-heading h2 em, .why-copy h2 em, .contact-copy h2 em { color: var(--red); font-style: normal; }
.hero-copy > p { max-width: 590px; margin: 26px 0 30px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 22px; border-radius: 12px; font-size: 13px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--red); box-shadow: 0 12px 28px rgba(217,11,28,.25); }
.button-primary:hover { background: var(--red-dark); box-shadow: 0 16px 34px rgba(217,11,28,.32); }
.button-primary > span { display: grid; place-items: center; width: 28px; height: 28px; margin-left: 7px; border-radius: 8px; background: rgba(255,255,255,.16); }
.button-whatsapp { color: var(--green); background: white; border: 1px solid #dfe5df; }
.button-whatsapp:hover { box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.hero-points { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.hero-points span { display: flex; align-items: center; gap: 7px; color: #4c5056; font-size: 11px; font-weight: 700; }
.hero-points svg { width: 15px; color: var(--red); stroke-width: 2.5; }

.hero-visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.red-orbit {
  position: absolute; width: 480px; height: 480px; border: 74px solid var(--red); border-radius: 50%;
  border-right-color: transparent; transform: rotate(-24deg); filter: drop-shadow(0 28px 45px rgba(217,11,28,.18));
}
.hero-photo-card {
  position: relative; z-index: 2; width: 390px; height: 480px; overflow: hidden;
  border: 10px solid white; border-radius: 48px 14px 48px 14px; background: white; box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-photo-card::after {
  content: ""; position: absolute; inset: 0; border-radius: 36px 6px 36px 6px; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}
.hero-photo-card::before {
  content: ""; position: absolute; z-index: 1; inset: auto 0 0; height: 34%;
  background: linear-gradient(to top, rgba(16,17,19,.32), transparent); pointer-events: none;
}
.hero-photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }
.hero-photo-tag {
  position: absolute; top: 20px; right: -18px; z-index: 3; padding: 8px 14px;
  border-radius: 8px; color: white; background: var(--ink); font: 700 10px/1 "Space Grotesk"; letter-spacing: 2px;
}
.experience-card, .service-float {
  position: absolute; z-index: 4; display: flex; align-items: center; background: white; box-shadow: 0 18px 40px rgba(0,0,0,.13);
}
.experience-card { left: -8px; bottom: 45px; gap: 12px; padding: 16px 18px; border-radius: 14px; }
.experience-card > svg { width: 30px; height: 30px; color: var(--red); }
.experience-card span { display: flex; flex-direction: column; }
.experience-card strong { font-size: 13px; }
.experience-card small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.service-float { right: -12px; top: 40px; gap: 8px; padding: 12px 15px; border-radius: 12px; color: white; background: var(--red); font-size: 11px; font-weight: 800; }
.service-float svg { width: 18px; }
.hero-strip { position: relative; z-index: 3; color: white; background: var(--ink); }
.hero-strip-inner { min-height: 62px; display: flex; align-items: center; justify-content: space-between; }
.hero-strip span { display: flex; align-items: center; gap: 20px; color: #ddd; font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; white-space: nowrap; }
.hero-strip span:not(:last-child)::after { content: "✦"; color: var(--red); font-size: 9px; }

.section { padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; margin-bottom: 52px; }
.section-heading h2, .why-copy h2, .contact-copy h2 { margin-top: 14px; font-size: 47px; line-height: 1.04; letter-spacing: -2.6px; }
.section-heading > p { margin: 0 0 3px; color: var(--muted); line-height: 1.75; font-size: 14px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative; min-height: 325px; padding: 30px; overflow: hidden; border: 1px solid var(--line);
  border-radius: var(--radius); background: white; transition: transform .25s ease, border .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 20px 55px rgba(0,0,0,.1); }
.service-number { position: absolute; top: 24px; right: 26px; color: #d4d5d7; font: 600 12px/1 "Space Grotesk"; }
.service-icon { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; color: var(--red); background: var(--red-soft); }
.service-icon svg { width: 34px; height: 34px; }
.service-card h3 { margin: 26px 0 12px; font: 700 20px/1.2 "Space Grotesk"; letter-spacing: -.5px; }
.service-card p { min-height: 70px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.service-card a { display: inline-flex; align-items: center; gap: 9px; margin-top: 23px; color: var(--red); font-size: 12px; font-weight: 800; }
.service-card a svg { width: 15px; transition: transform .2s ease; }
.service-card a:hover svg { transform: translateX(4px); }

.why-us { color: white; background: var(--ink); overflow: hidden; }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.why-visual { position: relative; min-height: 500px; }
.why-shape { position: absolute; inset: 15px 30px 15px 0; border: 1px solid #3b3c3f; border-radius: 200px 200px 28px 28px; }
.why-shape::before {
  content: ""; position: absolute; inset: 32px; border-radius: inherit;
  background: linear-gradient(145deg, #27292d, #111214);
}
.why-shape::after {
  content: ""; position: absolute; width: 145px; height: 145px; right: -32px; top: 85px;
  border: 28px solid var(--red); border-radius: 50%;
}
.why-panel { position: absolute; z-index: 2; left: 66px; top: 125px; }
.why-panel blockquote { margin: 20px 0; font: 600 36px/1.15 "Space Grotesk"; letter-spacing: -1.7px; }
.why-panel p { max-width: 245px; color: #a7aaaf; font-size: 12px; line-height: 1.65; }
.location-badge {
  position: absolute; z-index: 3; right: 0; bottom: 54px; width: 145px; height: 145px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: var(--ink); background: white; border-radius: 50%; box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.location-badge svg { width: 25px; height: 25px; color: var(--red); }
.location-badge strong { margin-top: 7px; font: 700 18px/1 "Space Grotesk"; }
.location-badge span { margin-top: 5px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: 1px; }
.why-copy h2 { font-size: 53px; }
.why-copy .lead { margin: 25px 0 32px; color: #a9acb1; font-size: 14px; line-height: 1.8; }
.feature-list { display: grid; gap: 20px; }
.feature { display: flex; gap: 15px; }
.feature > span { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: white; background: var(--red); }
.feature > span svg { width: 17px; }
.feature h3 { margin: 0 0 5px; font-size: 14px; }
.feature p { margin: 0; color: #8f9298; font-size: 12px; line-height: 1.6; }

.process { background: var(--off-white); }
.section-heading.centered { display: block; max-width: 580px; margin: 0 auto 52px; text-align: center; }
.section-heading.centered > p { margin-top: 18px; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-grid::before { content: ""; position: absolute; top: 39px; left: 16%; right: 16%; height: 1px; background: #d9d9d7; }
.process-card { position: relative; text-align: center; }
.process-number {
  position: relative; z-index: 2; width: 78px; height: 78px; display: grid; place-items: center; margin: 0 auto 26px;
  border: 9px solid var(--off-white); border-radius: 50%; color: white; background: var(--red); font: 700 17px/1 "Space Grotesk";
}
.process-card h3 { margin: 0 0 10px; font: 700 19px/1.2 "Space Grotesk"; }
.process-card p { max-width: 285px; margin: auto; color: var(--muted); font-size: 12px; line-height: 1.7; }

.contact-section { padding: 70px 0 100px; background: var(--off-white); }
.contact-card {
  position: relative; min-height: 300px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 50px;
  padding: 55px 68px; overflow: hidden; border-radius: 28px; color: white;
  background: linear-gradient(125deg, var(--red-dark), var(--red) 55%, #ed1a2b);
  box-shadow: 0 26px 70px rgba(183, 5, 20, .24);
}
.contact-card::before { content: ""; position: absolute; width: 330px; height: 330px; right: -110px; top: -170px; border: 55px solid rgba(255,255,255,.08); border-radius: 50%; }
.section-kicker.light { color: #ffd9dd; }
.contact-copy h2 { margin-top: 16px; font-size: 42px; letter-spacing: -2px; }
.contact-copy h2 em { color: white; }
.contact-copy p { margin: 18px 0 0; color: #ffdfe2; font-size: 13px; }
.contact-actions { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: stretch; gap: 13px; }
.contact-phone { display: flex; align-items: center; gap: 14px; padding: 18px; border-radius: 14px; background: rgba(120,0,10,.25); border: 1px solid rgba(255,255,255,.18); }
.contact-phone > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; color: var(--red); background: white; }
.contact-phone div { display: flex; flex-direction: column; }
.contact-phone small { color: #ffc7cc; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.contact-phone strong { margin-top: 3px; font: 700 20px/1 "Space Grotesk"; }
.button-light { color: var(--red); background: white; }
.contact-asterisk { position: absolute; right: 42%; bottom: -35px; color: rgba(255,255,255,.14); font-size: 120px; line-height: 1; transform: rotate(10deg); }

.site-footer { padding: 68px 0 22px; color: #d8d9db; background: #101113; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr 1fr; gap: 52px; padding-bottom: 55px; }
.brand-footer .brand-copy strong { color: white; }
.brand-footer img { mix-blend-mode: screen; }
.footer-brand p, .footer-hours p, .footer-hours small { color: #8d9095; font-size: 11px; line-height: 1.7; }
.footer-brand p { max-width: 230px; margin-top: 20px; }
.footer-links, .footer-hours { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong, .footer-hours strong { margin-bottom: 6px; color: white; font-size: 12px; }
.footer-links a { color: #8d9095; font-size: 11px; transition: color .2s ease; }
.footer-links a:hover { color: white; }
.footer-hours p { margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid #2c2d30; color: #686b70; font-size: 10px; }
.footer-bottom a:hover { color: white; }
.mobile-actions { display: none; }

.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.service-card:nth-child(2), .process-card:nth-child(2) { transition-delay: .08s; }
.service-card:nth-child(3), .process-card:nth-child(3) { transition-delay: .16s; }
.service-card:nth-child(5) { transition-delay: .08s; }
.service-card:nth-child(6) { transition-delay: .16s; }

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

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .header-call { margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero h1 { font-size: 56px; }
  .red-orbit { width: 410px; height: 410px; border-width: 60px; }
  .hero-photo-card { width: 335px; height: 425px; }
  .service-float { right: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 55px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-hours { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, 600px); }
  .topbar-hours { display: none !important; }
  .topbar-inner { justify-content: center; }
  .nav-wrap { height: 72px; gap: 10px; }
  .brand img { width: 49px; height: 49px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 8px; letter-spacing: 1.5px; }
  .header-call { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav {
    position: fixed; inset: 108px 0 auto; z-index: 99; display: flex; flex-direction: column; padding: 18px 25px 30px;
    background: white; box-shadow: 0 30px 50px rgba(0,0,0,.14); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease;
  }
  .mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav a { padding: 15px 5px; border-bottom: 1px solid var(--line); font-weight: 700; }
  .hero-inner { min-height: auto; grid-template-columns: 1fr; padding: 58px 0 35px; text-align: center; }
  .eyebrow { justify-content: center; margin-bottom: 20px; font-size: 9px; }
  .hero h1 { font-size: clamp(43px, 13vw, 58px); letter-spacing: -3px; }
  .hero-copy > p { margin: 22px auto 27px; font-size: 14px; line-height: 1.7; }
  .hero-actions { justify-content: center; }
  .button { min-height: 52px; }
  .hero-points { justify-content: center; gap: 13px; margin-top: 24px; }
  .hero-points span { font-size: 10px; }
  .hero-visual { min-height: 380px; margin-top: 8px; }
  .red-orbit { width: 325px; height: 325px; border-width: 46px; }
  .hero-photo-card { width: min(285px, 78vw); height: 350px; border-width: 7px; border-radius: 36px 10px 36px 10px; }
  .experience-card { left: 0; bottom: 23px; padding: 12px; }
  .experience-card > svg { width: 25px; }
  .service-float { right: 0; top: 25px; }
  .hero-strip { overflow: hidden; }
  .hero-strip-inner { width: max-content; gap: 30px; padding-inline: 18px; animation: ticker 22s linear infinite; }
  .hero-strip span { gap: 30px; }
  @keyframes ticker { to { transform: translateX(-45%); } }
  .section { padding: 80px 0; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading h2, .why-copy h2 { font-size: 39px; letter-spacing: -2px; }
  .section-heading > p { margin-top: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 26px; }
  .service-card p { min-height: auto; }
  .why-grid { grid-template-columns: 1fr; gap: 55px; }
  .why-visual { min-height: 400px; }
  .why-panel { left: 40px; top: 105px; }
  .why-panel blockquote { font-size: 30px; }
  .location-badge { width: 115px; height: 115px; bottom: 25px; }
  .process-grid { grid-template-columns: 1fr; gap: 34px; }
  .process-grid::before { top: 10%; bottom: 10%; left: 38px; right: auto; width: 1px; height: auto; }
  .process-card { min-height: 85px; display: grid; grid-template-columns: 78px 1fr; column-gap: 18px; text-align: left; }
  .process-number { grid-row: 1 / 3; margin: 0; }
  .process-card h3 { align-self: end; }
  .process-card p { margin: 0; }
  .contact-section { padding: 50px 0 80px; }
  .contact-card { grid-template-columns: 1fr; gap: 34px; padding: 42px 27px; text-align: center; }
  .contact-copy h2 { font-size: 36px; }
  .contact-phone { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-hours { grid-column: 1 / -1; }
  .footer-bottom { padding-bottom: 70px; gap: 20px; }
  .mobile-actions {
    position: fixed; z-index: 150; left: 12px; right: 12px; bottom: 10px; display: grid; grid-template-columns: 1fr 1.25fr;
    min-height: 58px; padding: 5px; border: 1px solid rgba(0,0,0,.08); border-radius: 17px; background: rgba(255,255,255,.96);
    box-shadow: 0 10px 40px rgba(0,0,0,.2); backdrop-filter: blur(12px);
  }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 12px; font-size: 12px; font-weight: 800; }
  .mobile-actions a:first-child { color: white; background: var(--red); }
  .mobile-actions a:last-child { color: white; background: var(--green); }
}

@media (max-width: 390px) {
  .brand-copy small { letter-spacing: 1px; }
  .hero-actions .button { width: 100%; }
  .hero-points span:last-child { display: none; }
  .service-float { right: -5px; }
  .experience-card { left: -5px; }
}
