/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Brand Fonts - Replace with actual font files when available */
@font-face {
    font-family: 'Subtle Curves';
    src: url('assets/fonts/Subtle Curves.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Subtle Curves';
    src: url('assets/fonts/Subtle Curves Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'F25 Bank Printer';
    src: url('assets/fonts/F25_Bank_Printer.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'F25 Bank Printer';
    src: url('assets/fonts/F25_Bank_Printer_Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Meteor Strike';
    src: url('assets/fonts/Meteor Strike DEMO.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-negro: #111111;
    --color-rosa: #F6A8B5;
    --color-celeste: #90C2CF;
    --color-blanco: #ffffff;
    --color-crema: #fffaf7;
    --color-linea: rgba(17, 17, 17, 0.12);
    --color-texto-secundario: rgba(17, 17, 17, 0.68);
    --color-sombra: rgba(17, 17, 17, 0.12);

    /* Brand Typography */
    --font-display: 'F25 Bank Printer', 'Arial Black', sans-serif;
    --font-body: 'F25 Bank Printer', 'Arial Black', sans-serif;
    --font-ui: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-body), -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background:
        radial-gradient(circle at 14% 16%, rgba(144, 194, 207, 0.34), transparent 30%),
        radial-gradient(circle at 89% 10%, rgba(144, 194, 207, 0.3), transparent 21%),
        radial-gradient(circle at 7% 78%, rgba(246, 168, 181, 0.36), transparent 24%),
        linear-gradient(180deg, #fffefc 0%, #fff9f7 100%);
    color: var(--color-negro);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    isolation: isolate;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 999px;
    filter: blur(16px);
    z-index: -1;
}

body::before {
    width: 17rem;
    height: 17rem;
    left: -5rem;
    top: 2rem;
    background: rgba(144, 194, 207, 0.12);
}

body::after {
    width: 15rem;
    height: 15rem;
    left: -4rem;
    bottom: 0.5rem;
    background: rgba(246, 168, 181, 0.12);
}

/* Container and Layout */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
}

.content {
    width: 100%;
    max-width: 344px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.95rem;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.15rem;
}

.logo {
    width: min(100%, 192px);
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Shared Sections */
.section-title {
    font-family: var(--font-display);
    font-size: 1.16rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-negro);
}

/* Primary Buttons */
.buttons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    margin-bottom: 0.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 700;
    flex: 1 1 0;
    max-width: 168px;
    min-height: 3.7rem;
    padding: 0.78rem 0.7rem 0.72rem;
    border-radius: 999px;
    transition: all 0.2s ease;
    letter-spacing: 0.06em;
    cursor: pointer;
    border: 3px solid var(--color-negro);
    box-shadow: 6px 6px 0 var(--color-negro);
}

.btn-primary {
    color: var(--color-negro);
    background-color: var(--color-rosa);
}

.btn-primary:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--color-negro);
}

.buttons .btn-primary:nth-child(2) {
    background-color: var(--color-celeste);
}

.buttons .btn-primary:nth-child(2):hover {
    transform: translate(3px, 3px);
}

/* Delivery */
.delivery-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.94rem;
    margin-top: 0.55rem;
}

.delivery-buttons {
    width: min(100%, 336px);
    display: flex;
    justify-content: center;
    gap: 1.02rem;
}

.delivery-button-shell {
    display: flex;
    flex: 1 1 0;
}

.btn-delivery {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 3.56rem;
    padding: 0.68rem 1.06rem;
    border-radius: 999px;
    transition: all 0.2s ease;
    border: 2.5px solid var(--color-negro);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 5px 5px 0 var(--color-negro);
}

.btn-delivery:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--color-negro);
}

.delivery-logo {
    display: block;
    width: auto;
    height: 1.64rem;
    max-width: 100%;
}

.delivery-logo-uber {
    height: 1.32rem;
}

.delivery-logo-rappi {
    height: 1.32rem;
}

/* Info Blocks */
.info-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.82rem;
    width: 100%;
}

.address-pill,
.schedule-card,
.contact-link {
    background: rgba(255, 255, 255, 0.92);
    border: 3px solid var(--color-negro);
    box-shadow: 5px 5px 0 var(--color-negro);
}

.address-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 332px);
    gap: 0.65rem;
    min-height: 3.46rem;
    padding: 0.45rem 0.92rem;
    border-radius: 999px;
}

.address {
    font-family: var(--font-body);
    font-size: 0.97rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-negro);
    text-align: center;
}

.address-icon {
    width: 1.55rem;
    height: 1.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-negro);
    flex: 0 0 auto;
}

.address-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.schedule-card {
    width: min(100%, 332px);
    border-radius: 2.35rem;
    padding: 0.92rem 1.05rem 0.84rem;
    background:
        radial-gradient(circle at 15% 40%, rgba(246, 168, 181, 0.16), transparent 40%),
        rgba(255, 255, 255, 0.92);
}

.schedule-title {
    margin-bottom: 0.42rem;
}

.schedule-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 0.52rem;
    margin: 0.14rem 0;
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.schedule-row span,
.schedule-row strong {
    color: var(--color-negro);
}

.schedule-row span {
    white-space: normal;
    min-width: 0;
}

.schedule-row strong {
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
    justify-self: end;
}

.contact {
    display: flex;
    justify-content: center;
    gap: 0.82rem;
    width: 100%;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.96rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--color-negro);
    flex: 1 1 0;
    max-width: 160px;
    min-height: 2.95rem;
    padding: 0.4rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-link:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--color-negro);
}

@media (min-width: 481px) {
    .container {
        padding: 2rem 1.5rem 2.5rem;
    }

    .content {
        max-width: 456px;
        gap: 1.05rem;
    }

    .logo {
        width: min(100%, 212px);
    }

    .buttons {
        gap: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .btn {
        max-width: 208px;
        min-height: 3.9rem;
        font-size: 1.5rem;
        padding: 0.82rem 0.82rem 0.76rem;
    }

    .delivery-section {
        gap: 0.98rem;
        margin-top: 0.6rem;
    }

    .delivery-buttons {
        width: min(100%, 372px);
        gap: 1rem;
    }

    .btn-delivery {
        min-height: 3.42rem;
        padding: 0.62rem 1rem;
    }

    .delivery-logo {
        height: 1.46rem;
    }

    .delivery-logo-uber,
    .delivery-logo-rappi {
        height: 1.2rem;
    }

    .info-stack {
        gap: 0.95rem;
    }

    .address-pill {
        width: min(100%, 388px);
    }

    .schedule-card {
        width: min(100%, 428px);
    }

    .address-pill {
        min-height: 3.6rem;
        padding: 0.5rem 1rem;
    }

    .address {
        font-size: 1rem;
    }

    .schedule-card {
        padding: 1rem 1.2rem 0.94rem;
    }

    .schedule-row {
        gap: 0.72rem;
        font-size: 1rem;
    }

    .contact {
        width: min(100%, 428px);
        gap: 0.95rem;
    }

    .contact-link {
        max-width: none;
        min-height: 3.12rem;
        font-size: 0.98rem;
        padding: 0.46rem 0.72rem;
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    body {
        overflow: hidden;
    }

    body::before {
        width: 13rem;
        height: 13rem;
        left: -4.8rem;
        top: 1.3rem;
    }

    body::after {
        width: 12rem;
        height: 12rem;
        left: -4rem;
        bottom: 0;
    }

    .container {
        min-height: 100svh;
        height: 100svh;
        padding: 0.8rem 0.9rem 0.9rem;
    }

    .content {
        min-height: 100%;
        justify-content: center;
        gap: 0.84rem;
        max-width: 344px;
    }

    .logo {
        width: min(100%, 188px);
    }

    .section-title {
        font-size: 1.12rem;
        letter-spacing: 0.04em;
    }

    .btn {
        max-width: 160px;
        font-size: 1.36rem;
        min-height: 3.62rem;
        padding: 0.74rem 0.66rem 0.68rem;
        border-width: 2px;
        border-radius: 999px;
        box-shadow: 5px 5px 0 var(--color-negro);
    }

    .buttons {
        gap: 0.78rem;
        margin-bottom: 0.32rem;
    }

    .delivery-section {
        gap: 0.94rem;
        margin-top: 0.62rem;
    }

    .delivery-buttons {
        width: min(100%, 332px);
        gap: 1rem;
    }

    .btn-delivery {
        min-height: 3.5rem;
        padding: 0.64rem 0.96rem;
        border-width: 2px;
        box-shadow: 5px 5px 0 var(--color-negro);
    }

    .delivery-logo {
        height: 1.56rem;
    }

    .delivery-logo-uber {
        height: 1.28rem;
    }

    .delivery-logo-rappi {
        height: 1.28rem;
    }

    .info-stack {
        gap: 0.8rem;
    }

    .address-pill,
    .schedule-card,
    .contact-link {
        box-shadow: 5px 5px 0 var(--color-negro);
        border-width: 2px;
    }

    .address-pill {
        width: min(100%, 328px);
        min-height: 3.34rem;
        padding: 0.42rem 0.84rem;
        gap: 0.62rem;
    }

    .address-icon {
        width: 1.46rem;
        height: 1.46rem;
    }

    .address {
        font-size: 0.92rem;
        line-height: 1.12;
    }

    .schedule-card {
        width: min(100%, 328px);
        border-radius: 2.15rem;
        padding: 0.84rem 1rem 0.76rem;
    }

    .schedule-title {
        margin-bottom: 0.38rem;
    }

    .schedule-row {
        gap: 0.48rem;
        margin: 0.12rem 0;
        font-size: 0.88rem;
        letter-spacing: 0.01em;
    }

    .contact {
        gap: 0.78rem;
    }

    .contact-link {
        max-width: 156px;
        min-height: 2.84rem;
        font-size: 0.8rem;
        padding: 0.38rem 0.42rem;
    }
}

@media (max-width: 480px) and (max-height: 760px) {
    .content {
        gap: 0.58rem;
    }

    .logo {
        width: min(100%, 170px);
    }

    .btn {
        max-width: 152px;
        font-size: 1.2rem;
        min-height: 3.18rem;
        padding: 0.62rem 0.58rem 0.56rem;
        box-shadow: 4px 4px 0 var(--color-negro);
    }

    .delivery-section {
        gap: 0.68rem;
        margin-top: 0.28rem;
    }

    .section-title {
        font-size: 0.96rem;
    }

    .btn-delivery {
        min-height: 3.18rem;
        padding: 0.52rem 0.74rem;
        box-shadow: 4px 4px 0 var(--color-negro);
    }

    .delivery-buttons {
        width: min(100%, 312px);
        gap: 0.86rem;
    }

    .delivery-logo {
        height: 1.34rem;
    }

    .delivery-logo-uber {
        height: 1.12rem;
    }

    .delivery-logo-rappi {
        height: 1.12rem;
    }

    .info-stack {
        gap: 0.58rem;
    }

    .address-pill,
    .schedule-card,
    .contact-link {
        box-shadow: 4px 4px 0 var(--color-negro);
    }

    .address-pill {
        min-height: 3rem;
        padding: 0.4rem 0.7rem;
        gap: 0.5rem;
    }

    .address-icon {
        width: 1.28rem;
        height: 1.28rem;
    }

    .address {
        font-size: 0.82rem;
    }

    .schedule-card {
        padding: 0.72rem 0.82rem 0.66rem;
        border-radius: 1.9rem;
    }

    .schedule-title {
        margin-bottom: 0.28rem;
    }

    .schedule-row {
        margin: 0.08rem 0;
        font-size: 0.79rem;
        gap: 0.36rem;
    }

    .contact {
        gap: 0.56rem;
    }

    .contact-link {
        max-width: 148px;
        min-height: 2.56rem;
        font-size: 0.74rem;
        padding: 0.34rem 0.38rem;
    }
}
