/* Akualuks base: tokens, reset, typography, accessibility and generic controls. */

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 500;
    font-display: block;
    src: url('../fonts/material-symbols-outlined.ttf') format('truetype');
}

:root {
    --blue: #153792;
    --blue-dark: #0b1f5f;
    --pink: #f26295;
    --cyan: #00aeb8;
    --mint: #e8fbf8;
    --ink: #111827;
    --text: #4b5563;
    --muted: #6b7280;
    --line: rgba(21, 55, 146, .12);
    --soft: #f6f8ff;
    --white: #ffffff;
    --radius: 8px;
    --shadow: 0 18px 44px rgba(17, 24, 39, .12);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--soft);
    line-height: 1.5;
}

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

a,
button,
summary {
    -webkit-tap-highlight-color: rgba(242, 98, 149, .18);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
iframe:focus-visible {
    outline: 3px solid rgba(242, 98, 149, .95);
    outline-offset: 4px;
    border-radius: 6px;
}

.skip-link:not(:focus):not(:focus-visible) {
    position: fixed;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link:focus,
.skip-link:focus-visible {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: var(--radius);
    color: white;
    background: var(--blue-dark);
    font-weight: 800;
}

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

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

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'liga';
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

#servicios,
#precios,
#autoservicio,
#secado,
#lavado-por-encargo,
#urgente,
#edredones,
#complementos,
#guia-servicios,
#negocios,
#cafeteria,
#ubicacion,
#faq {
    scroll-margin-top: 104px;
}

#guia-servicios {
    scroll-margin-top: 0;
}

.btn svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: currentColor;
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow.pink {
    color: var(--pink);
}

h1 {
    max-width: 700px;
    margin: 0 0 22px;
    font-size: 4.1rem;
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 800;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

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

.btn-primary {
    color: white;
    background: var(--pink);
    box-shadow: 0 14px 30px rgba(242, 98, 149, .34);
}

.btn-primary:hover {
    background: #e84f85;
}

.btn-secondary {
    color: var(--blue);
    background: white;
}

.btn-outline {
    color: var(--blue);
    background: white;
    border: 2px solid var(--line);
}

.section {
    position: relative;
    padding: 104px 0;
    overflow: hidden;
}

.section > .container {
    position: relative;
    z-index: 1;
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 72px;
    align-items: start;
}

h2 {
    margin-bottom: 18px;
    font-size: 2.85rem;
    line-height: 1.05;
    letter-spacing: 0;
    font-weight: 800;
    color: var(--blue);
}

h3 {
    letter-spacing: 0;
}

.check-list {
    margin: 26px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.55;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .48em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 5px var(--mint);
}

.section-head {
    max-width: 760px;
    margin-bottom: 48px;
}

.symbol {
    width: min(300px, 82vw);
    height: auto;
    object-fit: contain;
    margin: 0 auto 22px;
}

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

.delay {
    animation-delay: 0s;
}

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

    .btn {
        transition: none;
    }

}

@media (max-width: 1040px) {
    h1 {
        font-size: 3.35rem;
    }

    h2 {
        font-size: 2.45rem;
    }

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

}

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

    h1 {
        font-size: 2.45rem;
        line-height: 1.04;
    }

    h2 {
        font-size: 2rem;
        line-height: 1.12;
    }

    .btn {
        width: 100%;
        padding: 0 18px;
    }

    .section {
        padding: 76px 0;
    }

    .split {
        gap: 30px;
    }

}

.section-head p {
    color: var(--text);
    font-size: 1.06rem;
    line-height: 1.7;
}

#lavado-por-encargo {
    background: white;
}

.btn .material-symbols-outlined {
    font-size: 20px;
}

.section-head.centered {
    text-align: center;
    margin-inline: auto;
}

.section-head.centered h2,
.section-head.centered p {
    margin-inline: auto;
}

.btn-outline-light {
    color: white;
    background: transparent;
    border: 2px solid rgba(255,255,255,.55);
}

.btn-outline-pink {
    color: var(--pink);
    background: white;
    border: 2px solid rgba(242, 98, 149, .55);
}

.btn-secondary.on-pink {
    background: white;
    color: var(--pink);
    box-shadow: 0 16px 30px rgba(130, 20, 72, .18);
}

.btn-outline-white {
    color: white;
    background: transparent;
    border: 2px solid rgba(255,255,255,.74);
}
