: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(--white);
}

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

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

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    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;
}

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

#servicios,
#cafeteria,
#ubicacion {
    scroll-margin-top: 104px;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
}

.nav-actions a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.nav-actions a:not(.nav-cta):hover {
    color: var(--pink);
}

.nav-cta {
    padding: 0 18px;
    border-radius: 999px;
    background: var(--pink);
    color: white;
    box-shadow: 0 10px 24px rgba(242, 98, 149, .28);
}

.hero {
    position: relative;
    min-height: 660px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: white;
    background: var(--blue-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(11, 31, 95, .94), rgba(21, 55, 146, .84) 52%, rgba(242, 98, 149, .68)),
        url('../img/pattern-blue.jpg');
    background-size: cover;
    background-position: center;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
    gap: 52px;
    align-items: center;
    padding: 70px 0 76px;
}

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

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

.hero-text {
    max-width: 620px;
    margin: 0 0 34px;
    font-size: 1.25rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .9);
}

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

.hero-actions.align-left {
    justify-content: flex-start;
}

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

.hero-facts {
    margin: 38px 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-facts div {
    padding: 18px;
    border-left: 3px solid rgba(255, 255, 255, .36);
    background: rgba(255, 255, 255, .08);
}

.hero-facts dt {
    margin-bottom: 4px;
    font-size: 1.45rem;
    font-weight: 800;
}

.hero-facts dd {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: .92rem;
    line-height: 1.45;
}

.hero-visual {
    position: relative;
    min-height: 360px;
    padding: 34px;
    display: grid;
    align-content: center;
    gap: 28px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 16px;
    background:
        linear-gradient(160deg, rgba(11, 31, 95, .94), rgba(21, 55, 146, .9) 56%, rgba(242, 98, 149, .82)),
        url('../img/pattern-pink.jpg');
    background-size: cover;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-logo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 390px;
    object-fit: contain;
    margin: 0 auto;
}

.hero-mark {
    position: absolute;
    right: -44px;
    top: -44px;
    width: 170px;
    opacity: .24;
}

.service-board {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.service-board span {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: var(--radius);
    color: white;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    font-weight: 800;
}

.service-board i {
    flex: 0 0 auto;
    color: var(--pink);
}

.quick-contact {
    border-bottom: 1px solid var(--line);
    background: white;
}

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

.quick-grid a {
    min-height: 96px;
    padding: 22px 26px;
    display: grid;
    gap: 4px;
    border-left: 1px solid var(--line);
}

.quick-grid .material-symbols-outlined {
    width: 38px;
    height: 38px;
    margin-bottom: 6px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--blue);
}

.quick-grid a:last-child {
    border-right: 1px solid var(--line);
}

.quick-grid strong {
    color: var(--blue);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.quick-grid a > span:not(.material-symbols-outlined) {
    color: var(--text);
    line-height: 1.4;
}

.section {
    padding: 78px 0;
}

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

.intro {
    background: linear-gradient(180deg, white 0%, var(--soft) 100%);
}

.intro-copy p,
.location p,
.final-cta p,
.cafe p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text);
}

.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: 38px;
}

.services {
    background: var(--white);
}

.cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.card {
    min-height: 230px;
    padding: 26px;
    border-radius: var(--radius);
    background: var(--soft);
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(21, 55, 146, .08);
}

.card-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border-radius: var(--radius);
    color: white;
    background: var(--blue);
    font-weight: 800;
    font-size: 25px;
}

.card h3 {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 1.25rem;
    line-height: 1.2;
}

.card p {
    margin: 0;
    color: var(--text);
    line-height: 1.62;
}

.process {
    color: white;
    background:
        linear-gradient(rgba(21, 55, 146, .92), rgba(11, 31, 95, .94)),
        url('../img/pattern-blue.jpg');
    background-size: cover;
    background-position: center;
}

.process .eyebrow,
.process h2 {
    color: white;
}

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

.process-step {
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
}

.process-step span {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    border-radius: 50%;
    color: var(--blue);
    background: white;
    font-weight: 800;
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.28rem;
}

.process-step p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .86);
    line-height: 1.65;
}

.cafe {
    background: var(--mint);
}

.cafe-layout {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 54px;
    align-items: center;
}

.cafe-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cafe-side {
    display: grid;
    gap: 14px;
}

.cafe-list span {
    min-height: 64px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: white;
    border: 1px solid rgba(0, 174, 184, .24);
    color: var(--blue);
    font-weight: 800;
    text-align: center;
}

.cafe-brand-card {
    min-height: 190px;
    padding: 24px;
    display: grid;
    align-content: end;
    border-radius: var(--radius);
    color: white;
    background:
        linear-gradient(155deg, rgba(21, 55, 146, .96), rgba(11, 31, 95, .96)),
        url('../img/pattern-blue.jpg');
    background-size: cover;
    overflow: hidden;
}

.cafe-brand-card img {
    width: min(210px, 70%);
    margin-bottom: 18px;
}

.cafe-brand-card strong {
    font-size: 1.28rem;
}

.experience {
    background: white;
}

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

.experience-item {
    padding: 30px;
    border-radius: var(--radius);
    background: var(--blue);
    color: white;
}

.experience-item:nth-child(2) {
    background: var(--pink);
}

.experience-item:nth-child(3) {
    color: var(--blue);
    background: var(--mint);
}

.experience-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.55rem;
}

.experience-item span {
    display: block;
    opacity: .9;
    line-height: 1.6;
}

.testimonials {
    background: var(--soft);
}

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

.testimonial-card {
    min-height: 220px;
    padding: 26px;
    display: grid;
    align-content: start;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: white;
    box-shadow: 0 12px 28px rgba(21, 55, 146, .08);
}

.testimonial-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--blue);
}

.stars {
    margin-bottom: 16px;
    color: var(--pink);
    font-size: 1rem;
    letter-spacing: .08em;
}

.testimonial-card p {
    margin: 0;
    color: var(--text);
    line-height: 1.68;
}

.location {
    background: var(--soft);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 56px;
    align-items: center;
}

.address {
    margin-bottom: 28px;
}

.hours {
    margin: -8px 0 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius);
    color: var(--blue);
    background: white;
    border: 1px solid var(--line);
    font-weight: 800;
}

.hours .material-symbols-outlined {
    color: var(--pink);
}

.location-side {
    display: grid;
    gap: 16px;
}

.map-embed {
    aspect-ratio: 4 / 3;
    min-height: 310px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: white;
    box-shadow: 0 12px 28px rgba(21, 55, 146, .08);
}

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

.location-panel {
    padding: 30px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(21, 55, 146, .08);
}

.location-panel img {
    width: 78px;
    height: 74px;
    margin-bottom: 22px;
    object-fit: contain;
}

.location-panel strong {
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 1.35rem;
}

.location-panel p {
    margin-bottom: 0;
}

.faq {
    background: white;
}

.faq-layout {
    display: grid;
    grid-template-columns: .85fr 1fr;
    gap: 56px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--soft);
    box-shadow: 0 10px 24px rgba(21, 55, 146, .06);
}

.faq-list summary {
    min-height: 64px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--blue);
    cursor: pointer;
    font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--pink);
    font-size: 1.35rem;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    margin: -4px 24px 22px;
    color: var(--text);
    line-height: 1.7;
}

.final-cta {
    text-align: center;
    background: var(--soft);
}

.final-cta .container {
    max-width: 760px;
}

.final-cta .btn {
    margin-top: 8px;
}

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

.site-footer {
    padding: 54px 0;
    background: var(--blue-dark);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr 1fr;
    gap: 34px;
    align-items: start;
}

.footer-logo {
    width: 220px;
    height: auto;
    object-fit: contain;
    margin-bottom: 18px;
}

.site-footer p {
    max-width: 340px;
    opacity: .84;
    line-height: 1.7;
}

.site-footer strong,
.site-footer a {
    display: block;
}

.site-footer strong {
    margin-bottom: 12px;
}

.site-footer a {
    margin-bottom: 8px;
    opacity: .86;
    line-height: 1.45;
}

.site-footer a:hover {
    opacity: 1;
    color: white;
}

.footer-whatsapp,
.social-links {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.footer-whatsapp svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    fill: currentColor;
}

.social-links {
    margin-top: 10px;
}

.social-link {
    width: 34px;
    height: 34px;
    margin: 0;
    display: inline-grid !important;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--pink);
    color: white;
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(242, 98, 149, .42);
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.page-hero {
    padding: 90px 0;
    color: white;
    background:
        linear-gradient(rgba(21, 55, 146, .92), rgba(11, 31, 95, .94)),
        url('../img/pattern-blue.jpg');
    background-size: cover;
}

.page-hero h1 {
    margin: 0;
    color: white;
}

.page-hero p {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .86);
    line-height: 1.7;
}

.page-content {
    max-width: 780px;
    font-size: 1.08rem;
    line-height: 1.8;
}

.legal-hero .eyebrow {
    color: rgba(255, 255, 255, .82);
}

.legal-content {
    background: var(--soft);
}

.legal-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.legal-index {
    position: sticky;
    top: 104px;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: white;
    box-shadow: 0 10px 24px rgba(21, 55, 146, .06);
}

.legal-index strong {
    display: block;
    margin-bottom: 14px;
    color: var(--blue);
}

.legal-index a {
    display: block;
    padding: 10px 0;
    color: var(--text);
    font-weight: 700;
    line-height: 1.35;
    border-top: 1px solid rgba(21, 55, 146, .08);
}

.legal-index a:hover {
    color: var(--pink);
}

.legal-document {
    padding: 42px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: white;
    box-shadow: 0 12px 28px rgba(21, 55, 146, .08);
}

.legal-document section {
    padding: 30px 0;
    border-top: 1px solid rgba(21, 55, 146, .1);
}

.legal-document section:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.legal-updated {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 700;
}

.legal-document h2 {
    margin-bottom: 14px;
    font-size: 2rem;
    line-height: 1.16;
}

.legal-document h3 {
    margin: 24px 0 10px;
    color: var(--blue);
    font-size: 1.18rem;
}

.legal-document p,
.legal-document li {
    color: var(--text);
    line-height: 1.75;
}

.legal-document p {
    margin-bottom: 16px;
}

.legal-document ul {
    margin: 0 0 18px;
    padding-left: 22px;
}

.legal-document a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(242, 98, 149, .45);
    text-underline-offset: 3px;
}

.source-list {
    display: grid;
    gap: 8px;
}

.legal-note {
    margin-top: 24px;
    padding: 18px;
    border-left: 4px solid var(--pink);
    background: var(--soft);
    color: var(--ink);
    font-weight: 600;
}

.reveal {
    animation: rise .72s ease both;
}

.delay {
    animation-delay: .12s;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .reveal {
        animation: none;
    }

    .btn {
        transition: none;
    }
}

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

    h2 {
        font-size: 2.45rem;
    }

    .hero-grid,
    .split,
    .cafe-layout,
    .location-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 520px;
    }

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

    .process-grid,
    .experience-grid,
    .testimonial-grid,
    .faq-layout,
    .legal-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .legal-index {
        position: static;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .nav-inner {
        min-height: 72px;
    }

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

    .nav-actions {
        gap: 10px;
    }

    .nav-actions a:not(.nav-cta) {
        display: none;
    }

    .nav-cta {
        padding: 0 14px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        gap: 32px;
        padding: 52px 0 58px;
    }

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

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

    .hero-text {
        font-size: 1.05rem;
    }

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

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

    .hero-facts,
    .quick-grid,
    .testimonial-grid,
    .cafe-list {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 0;
        padding: 22px;
    }

    .hero-logo {
        max-width: 300px;
    }

    .quick-grid a {
        min-height: 82px;
        padding: 18px 0;
        border-left: 0;
        border-bottom: 1px solid var(--line);
    }

    .quick-grid a:last-child {
        border-right: 0;
        border-bottom: 0;
    }

    .section {
        padding: 66px 0;
    }

    .split,
    .cafe-layout,
    .location-layout {
        gap: 30px;
    }

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

    .card,
    .process-step,
    .experience-item,
    .location-panel,
    .legal-document,
    .legal-index {
        min-height: auto;
        padding: 24px;
    }

    .legal-document h2 {
        font-size: 1.65rem;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 48px;
        padding: 0 16px;
    }
}
