:root {
    --ink: #171719;
    --ink-soft: #636368;
    --paper: #f4f4f5;
    --surface: #ffffff;
    --surface-warm: #ececee;
    --primary: #e1252d;
    --primary-dark: #a70f16;
    --accent: #e1252d;
    --green: #25d366;
    --line: #dcdce0;
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.2);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.icon {
    width: 1.2em;
    height: 1.2em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

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

button {
    border: 0;
}

:focus-visible {
    outline: 3px solid rgba(225, 37, 45, 0.85);
    outline-offset: 3px;
}

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

.section {
    padding: 88px 0;
}

.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: -100px;
    z-index: 3000;
    padding: 12px 18px;
    border-radius: 8px;
    color: #fff;
    background: var(--primary-dark);
    transition: top 0.2s ease;
}

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

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 12px 28px rgba(225, 37, 45, 0.3);
}

.button-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    color: #fff;
    background: linear-gradient(90deg, rgba(10, 10, 11, 0.98), rgba(29, 29, 31, 0.98));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.header-inner {
    width: min(calc(100% - 40px), var(--container));
    min-height: 86px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    min-width: 235px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}

.brand-copy small {
    margin-top: 5px;
    color: #c9c9cd;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}

.primary-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.primary-navigation a {
    position: relative;
    color: #f5f5f6;
    font-size: 0.93rem;
    font-weight: 700;
}

.primary-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    background: var(--accent);
    transition: right 0.2s ease;
}

.primary-navigation a:hover::after {
    right: 0;
}

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

.cart-trigger {
    position: relative;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    color: #fff;
    background: var(--primary);
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.cart-count {
    min-width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    padding-inline: 6px;
    color: var(--ink);
    background: #fff;
    border-radius: 999px;
    font-size: 0.78rem;
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-content: center;
    gap: 5px;
    padding: 10px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.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);
}

.hero {
    position: relative;
    min-height: 330px;
    height: clamp(330px, 25vw, 390px);
    overflow: hidden;
    display: grid;
    align-items: center;
    color: #fff;
    background: #111113;
    isolation: isolate;
    touch-action: pan-y;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 0.65s ease, transform 6.5s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.26) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-block: 32px;
}

.hero-copy {
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.hero-copy.is-changing {
    opacity: 0;
    transform: translateY(7px);
}

.eyebrow,
.section-kicker {
    margin: 0 0 13px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    color: #fff;
    background: rgba(225, 37, 45, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
}

.hero h1 {
    max-width: 680px;
    margin: 12px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.25rem, 4.2vw, 3.45rem);
    line-height: 1;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 620px;
    margin: 0;
    color: #f2f2f3;
    font-size: clamp(0.92rem, 1.5vw, 1.05rem);
}

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

.hero-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 18px;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
    width: 30px;
    background: var(--accent);
}

.benefits {
    position: relative;
    z-index: 2;
    color: #fff;
    background: linear-gradient(135deg, #111113, #252527);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.benefits-grid > div {
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.benefits-grid > div:last-child {
    border-right: 0;
}

.benefits-grid .icon {
    color: var(--accent);
    font-size: 1.8rem;
}

.benefits-grid span {
    display: grid;
}

.benefits-grid strong {
    font-size: 1rem;
}

.benefits-grid small {
    color: #cccccf;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2,
.location-copy h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.section-heading > p:last-child {
    margin: 12px 0 0;
    color: var(--ink-soft);
}

.how-section {
    position: relative;
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(225, 37, 45, 0.24), transparent 36%),
        #0d0d0f;
}

.section-heading.light h2 {
    color: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.steps-grid article {
    position: relative;
    min-height: 245px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.steps-grid article > span {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(255, 255, 255, 0.16);
    font-family: Georgia, serif;
    font-size: 3.6rem;
    font-weight: 800;
}

.steps-grid .icon {
    color: var(--accent);
    font-size: 2rem;
}

.steps-grid h3 {
    margin: 50px 0 8px;
    font-size: 1.18rem;
}

.steps-grid p {
    margin: 0;
    color: #c9c9cc;
}

.info-section {
    background: var(--surface-warm);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.info-card {
    min-height: 250px;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-card > .icon {
    width: 50px;
    height: 50px;
    padding: 13px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--primary);
    border-radius: 14px;
    font-size: 1.3rem;
}

.info-card h3 {
    margin: 22px 0 9px;
    font-size: 1.12rem;
}

.info-card p {
    margin: 0 0 8px;
}

.info-card a {
    color: var(--primary-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.info-card small {
    color: var(--ink-soft);
}

.location-section {
    background: var(--surface);
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(400px, 1.4fr);
    align-items: center;
    gap: 52px;
}

.location-copy .section-kicker {
    margin-bottom: 10px;
}

.address {
    margin: 22px 0 28px;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.address .icon {
    margin-right: 8px;
    color: var(--primary);
    vertical-align: -0.2em;
}

.map-container {
    min-height: 420px;
    overflow: hidden;
    background: #eee;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 420px;
    display: block;
    border: 0;
}

.site-footer {
    padding: 34px 0;
    color: #d0d0d3;
    background: #09090a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr auto;
    align-items: center;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-brand div {
    display: grid;
}

.footer-brand strong {
    color: #fff;
}

.footer-brand small {
    color: #98989d;
}

.site-footer nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.site-footer nav a:hover {
    color: var(--accent);
}

.site-footer p {
    margin: 0;
    color: #929297;
    font-size: 0.84rem;
    text-align: right;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 800;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--green);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 13px 30px rgba(37, 211, 102, 0.32);
    transition: transform 0.2s ease;
}

.floating-whatsapp .icon {
    width: 28px;
    height: 28px;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.04);
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 2600;
    max-width: min(420px, calc(100% - 32px));
    padding: 12px 18px;
    color: #fff;
    background: #171719;
    border-radius: 999px;
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 20px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

noscript {
    display: block;
    padding: 16px;
    color: #fff;
    background: var(--primary-dark);
    text-align: center;
}

@media (max-width: 1040px) {
    .primary-navigation {
        gap: 18px;
    }

    .primary-navigation a {
        font-size: 0.86rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .site-footer p {
        text-align: center;
    }
}

@media (max-width: 860px) {
    html {
        scroll-padding-top: 78px;
    }

    .header-inner {
        min-height: 76px;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 56px;
        height: 56px;
    }

    .brand-copy strong {
        font-size: 1.1rem;
    }

    .brand-copy small {
        font-size: 0.66rem;
    }

    .menu-toggle {
        display: grid;
    }

    .primary-navigation {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        z-index: 999;
        display: grid;
        justify-content: stretch;
        gap: 0;
        padding: 12px 20px 24px;
        color: #fff;
        background: #111113;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-14px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .primary-navigation.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-navigation a {
        min-height: 52px;
        display: flex;
        align-items: center;
        padding: 10px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 1rem;
    }

    .primary-navigation a::after {
        display: none;
    }

    .hero {
        min-height: 420px;
        height: 420px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid > div {
        min-height: 92px;
        justify-content: flex-start;
        padding-left: max(24px, calc((100vw - 560px) / 2));
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .benefits-grid > div:last-child {
        border-bottom: 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid article {
        min-height: 210px;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .location-copy {
        text-align: center;
    }
}

@media (max-width: 620px) {
    .container,
    .header-inner {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 64px 0;
    }

    .cart-trigger span:not(.cart-count) {
        display: none;
    }

    .cart-trigger {
        width: 46px;
        justify-content: center;
        padding: 8px;
    }

    .cart-trigger .cart-count {
        position: absolute;
        top: 8px;
        margin-left: 31px;
        min-width: 19px;
        height: 19px;
        padding-inline: 4px;
        font-size: 0.67rem;
    }

    .hero {
        min-height: 500px;
        height: 500px;
    }

    .hero-slide {
        background-position: 65% center;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.58));
    }

    .hero-content {
        padding-block: 38px;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.02;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .hero-carousel-controls {
        justify-content: center;
        margin-top: 20px;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        min-height: 0;
    }

    .map-container,
    .map-container iframe {
        min-height: 340px;
        height: 340px;
    }

    .site-footer {
        padding-bottom: 106px;
    }

    .site-footer nav {
        display: grid;
        gap: 10px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 88px;
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp .icon {
        width: 25px;
        height: 25px;
    }

    .toast {
        bottom: 92px;
        border-radius: 14px;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
