:root {
    --red: #e11d2e;
    --red-dark: #b71422;
    --ink: #111114;
    --ink-2: #1b1b20;
    --paper: #f6f5f2;
    --white: #fff;
    --muted: #6f7078;
    --muted-light: #a6a7ae;
    --line: rgba(17, 17, 20, .11);
    --line-dark: rgba(255, 255, 255, .13);
    --shadow: 0 28px 90px rgba(16, 16, 20, .13);
    --radius-sm: 18px;
    --radius: 28px;
    --radius-lg: 44px;
    --wrap: 1280px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    background: var(--paper);
    color: var(--ink);
    font-family: "Avenir Next", "Helvetica Neue", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
}

::selection {
    background: var(--red);
    color: var(--white);
}

:focus-visible {
    outline: 3px solid rgba(225, 29, 46, .36);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 3000;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--ink);
    color: var(--white);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}

.site-wrap {
    width: min(var(--wrap), calc(100% - 64px));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 104px;
    border-bottom: 1px solid transparent;
    transition: height .35s var(--ease), background-color .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
    height: 78px;
    border-color: var(--line);
    background: rgba(246, 245, 242, .88);
    box-shadow: 0 12px 34px rgba(17, 17, 20, .06);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
    width: min(1400px, calc(100% - 64px));
    height: 100%;
    margin-inline: auto;
}

.brand {
    position: relative;
    z-index: 1002;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
}

.brand img {
    width: 176px;
    height: auto;
}

.site-nav {
    justify-self: center;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav a {
    position: relative;
    color: #303037;
    font-size: .94rem;
    font-weight: 600;
    transition: color .25s ease;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--red);
    content: "";
    transform: scaleX(0);
    transition: transform .3s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--red);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

/* --- Dropdown --- */
.site-nav > ul > li {
    position: relative;
    padding: 15px 0;
}

.site-nav .dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.site-nav .dropdown-trigger .chevron {
    font-size: .6rem;
    transition: transform .3s var(--ease);
    display: inline-block;
}

.site-nav li:hover .dropdown-trigger .chevron {
    transform: rotate(180deg);
}

.site-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: max-content;
    min-width: 290px;
    background: rgba(255, 255, 255, .98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease, transform .3s var(--ease);
    pointer-events: none;
    z-index: 9999;
    list-style: none;
    margin: 0;
}

.site-nav .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
}

.site-nav li:hover .dropdown-menu,
.site-nav li:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
    pointer-events: auto;
}

.site-nav .dropdown-menu a {
    padding: 13px 16px;
    color: #303037;
    border-radius: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: background .25s ease, color .25s ease, transform .25s ease;
    font-size: .92rem;
    white-space: nowrap;
}

.site-nav .dropdown-menu a::after {
    display: none;
}

.site-nav .dropdown-menu a:hover {
    background: rgba(225, 29, 46, .07);
    color: var(--red);
    transform: translateX(4px);
}

.site-nav .dropdown-menu i,
.site-nav .dropdown-menu .nav-icon {
    display: inline-grid;
    flex: 0 0 18px;
    place-items: center;
    margin-right: 12px;
    color: var(--red);
    width: 18px;
    font-size: .95rem;
    font-style: normal;
    font-weight: 800;
}

.site-nav .dropdown-menu a[aria-current="page"] {
    background: rgba(225, 29, 46, .07);
    color: var(--red);
}

.site-nav .dropdown-trigger::after {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta,
.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    line-height: 1;
    transition: transform .3s var(--ease), color .3s ease, background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.nav-cta {
    padding: 0 22px;
    background: var(--ink);
    color: var(--white);
    font-size: .9rem;
}

.nav-cta:hover,
.button-primary:hover {
    background: var(--red);
    box-shadow: 0 15px 34px rgba(225, 29, 46, .22);
    transform: translateY(-3px);
}

.button {
    padding: 0 24px;
}

.button-primary {
    background: var(--red);
    color: var(--white);
}

.button-primary:hover {
    background: var(--red-dark);
}

.button-dark {
    background: var(--ink);
    color: var(--white);
}

.button-dark:hover {
    background: var(--red);
    transform: translateY(-3px);
}

.button-ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, .55);
}

.button-ghost:hover {
    border-color: rgba(225, 29, 46, .28);
    background: var(--white);
    color: var(--red);
    transform: translateY(-3px);
}

.button-light {
    background: var(--white);
    color: var(--ink);
}

.button-light:hover {
    color: var(--red);
    transform: translateY(-3px);
}

.button .arrow,
.nav-cta .arrow {
    font-size: 1.15em;
    transition: transform .3s var(--ease);
}

.button:hover .arrow,
.nav-cta:hover .arrow {
    transform: translateX(4px);
}

.menu-toggle {
    position: relative;
    z-index: 1002;
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .7);
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 13px;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform .3s var(--ease), top .3s var(--ease), opacity .2s ease;
}

.menu-toggle span:first-child {
    top: 18px;
}

.menu-toggle span:last-child {
    top: 27px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    top: 22px;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    top: 22px;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: grid;
    align-content: center;
    padding: 118px 32px 42px;
    background: rgba(246, 245, 242, .98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .28s ease, transform .35s var(--ease);
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.mobile-menu nav {
    width: min(100%, 520px);
    margin-inline: auto;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.35rem, 5vw, 2rem);
    font-weight: 700;
}

.mobile-menu a::after {
    color: var(--red);
    content: "↗";
    font-size: .8em;
}

.mobile-menu .mobile-contact {
    margin-top: 24px;
    padding: 18px 22px;
    border: 0;
    border-radius: 18px;
    background: var(--red);
    color: var(--white);
    font-size: 1rem;
}

.page-main {
    display: block;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 2px;
    background: currentColor;
    content: "";
}

.page-hero {
    position: relative;
    display: grid;
    min-height: min(860px, 100svh);
    align-items: center;
    overflow: hidden;
    padding: 154px 0 84px;
}

.page-hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(17, 17, 20, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 20, .045) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 90%);
    mask-image: linear-gradient(to bottom, #000 0%, transparent 90%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
    align-items: center;
    gap: clamp(54px, 7vw, 108px);
}

.hero-copy h1 {
    max-width: 780px;
    margin: 22px 0 24px;
    font-size: clamp(3.6rem, 7vw, 7.7rem);
    font-weight: 800;
    letter-spacing: -.075em;
    line-height: .91;
}

.hero-copy h1 em {
    color: var(--red);
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-weight: 500;
}

.hero-copy > p {
    max-width: 650px;
    margin: 0;
    color: #55565d;
    font-size: clamp(1.05rem, 1.45vw, 1.3rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 38px;
    color: var(--muted);
    font-size: .86rem;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hero-meta span::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(225, 29, 46, .1);
    content: "";
}

.section {
    position: relative;
    padding: clamp(88px, 10vw, 150px) 0;
}

.section-dark {
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.section-dark::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 76px 76px;
    content: "";
    pointer-events: none;
}

.section-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .55fr);
    align-items: end;
    gap: 50px;
    margin-bottom: clamp(44px, 6vw, 78px);
}

.section-head h2 {
    max-width: 850px;
    margin: 17px 0 0;
    font-size: clamp(2.6rem, 5vw, 5.8rem);
    letter-spacing: -.065em;
    line-height: .96;
}

.section-head h2 em {
    color: var(--red);
    font-family: "Iowan Old Style", Baskerville, Georgia, serif;
    font-weight: 500;
}

.section-head > p {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.section-dark .section-head > p {
    color: var(--muted-light);
}

.card-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.info-card {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .72);
    transition: border-color .35s ease, box-shadow .4s var(--ease), transform .4s var(--ease);
}

.info-card:hover {
    border-color: rgba(225, 29, 46, .3);
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.section-dark .info-card {
    border-color: var(--line-dark);
    background: rgba(255, 255, 255, .035);
}

.section-dark .info-card:hover {
    border-color: rgba(225, 29, 46, .5);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

.card-index {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--red);
    font-family: "Space Mono", ui-monospace, monospace;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.card-index::after {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
}

.info-card h3 {
    margin: 82px 0 12px;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    letter-spacing: -.035em;
    line-height: 1.1;
}

.info-card p {
    margin: 0;
    color: var(--muted);
}

.section-dark .info-card p {
    color: var(--muted-light);
}

.process-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    overflow: hidden;
}

.process-step {
    min-height: 260px;
    padding: 30px;
    border-right: 1px solid var(--line-dark);
}

.process-step:last-child {
    border-right: 0;
}

.process-step strong {
    color: var(--red);
    font-family: "Space Mono", ui-monospace, monospace;
    font-size: .76rem;
    letter-spacing: .12em;
}

.process-step h3 {
    margin: 76px 0 10px;
    font-size: 1.45rem;
}

.process-step p {
    margin: 0;
    color: var(--muted-light);
    font-size: .92rem;
}

.cta-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    padding: clamp(38px, 6vw, 74px);
    border-radius: var(--radius-lg);
    background: var(--red);
    color: var(--white);
}

.cta-panel::after {
    position: absolute;
    top: -55%;
    right: -5%;
    width: 360px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    box-shadow: 0 0 0 46px rgba(255, 255, 255, .06), 0 0 0 92px rgba(255, 255, 255, .035);
    content: "";
}

.cta-panel > * {
    position: relative;
    z-index: 1;
}

.cta-panel h2 {
    max-width: 850px;
    margin: 0 0 12px;
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    letter-spacing: -.06em;
    line-height: .95;
}

.cta-panel p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
}

.site-footer {
    padding: 72px 0 28px;
    background: #0d0d0f;
    color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr auto;
    align-items: start;
    gap: 50px;
    padding-bottom: 56px;
}

.footer-brand img {
    width: 178px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 310px;
    margin: 22px 0 0;
    color: var(--muted-light);
    font-size: .94rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 30px;
}

.footer-links a {
    display: flex;
    min-height: 44px;
    align-items: center;
    color: #d2d2d6;
    transition: color .25s ease, transform .25s ease;
}

.footer-links a:hover {
    color: var(--red);
    transform: translateX(3px);
}

.footer-contact {
    display: grid;
    gap: 10px;
    justify-items: end;
}

.footer-contact a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    color: #d2d2d6;
}

.footer-contact a:hover {
    color: var(--red);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line-dark);
    color: #85858d;
    font-family: "Space Mono", ui-monospace, monospace;
    font-size: .7rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    background: #1fbd62;
    box-shadow: 0 12px 28px rgba(24, 150, 77, .28);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 800;
    transition: transform .3s var(--ease), box-shadow .3s ease;
}

.whatsapp:hover {
    box-shadow: 0 17px 36px rgba(24, 150, 77, .34);
    transform: translateY(-4px) scale(1.04);
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .8s var(--ease);
    transition-delay: var(--delay, 0ms);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

.media-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    padding: 24px;
    place-items: center;
    background: rgba(8, 8, 10, .88);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.media-modal[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.modal-dialog {
    position: relative;
    width: min(440px, 100%);
    max-height: calc(100svh - 48px);
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: 24px;
    background: #09090b;
    box-shadow: 0 40px 110px rgba(0, 0, 0, .55);
}

.modal-dialog video {
    width: 100%;
    max-height: calc(100svh - 48px);
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: rgba(17, 17, 20, .72);
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
}

@media (max-width: 1080px) {
    .nav-shell {
        grid-template-columns: auto 1fr auto;
    }

    .site-nav,
    .nav-cta {
        display: none;
    }

    .nav-actions {
        justify-self: end;
    }

    .menu-toggle {
        display: block;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-copy {
        max-width: 800px;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-step:nth-child(2) {
        border-right: 0;
    }

    .process-step:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line-dark);
    }
}

@media (max-width: 760px) {
    .site-wrap,
    .nav-shell {
        width: min(100% - 36px, var(--wrap));
    }

    .site-header,
    .site-header.is-scrolled {
        height: 76px;
    }

    .brand img {
        width: 142px;
    }

    .page-hero {
        min-height: auto;
        padding: 126px 0 72px;
    }

    .page-hero::before {
        background-size: 44px 44px;
    }

    .hero-copy h1 {
        font-size: clamp(3.25rem, 15.5vw, 5.4rem);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .section {
        padding: 84px 0;
    }

    .section-head {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }

    .card-grid,
    .process-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .info-card {
        min-height: 270px;
    }

    .process-step,
    .process-step:nth-child(2) {
        min-height: 220px;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .process-step:last-child {
        border-bottom: 0;
    }

    .process-step h3 {
        margin-top: 58px;
    }

    .cta-panel {
        grid-template-columns: minmax(0, 1fr);
        border-radius: 28px;
    }

    .cta-panel .button {
        width: 100%;
    }

    .footer-top {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .footer-contact {
        justify-items: start;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
