:root {
    --cafe-orange: #ff6600;
    --cafe-orange-dark: #e55b00;
    --cafe-blue: #7895a3;
    --cafe-blue-dark: #526d7a;
    --cafe-text: #263238;
    --cafe-muted: #6b7280;
    --cafe-background: #f7f8f9;
    --cafe-soft-blue: #eef3f5;
    --cafe-white: #ffffff;
    --cafe-border: #e6e8ea;
    --cafe-shadow: 0 18px 50px rgba(38, 50, 56, 0.08);
    --cafe-radius: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--cafe-text);
    background: var(--cafe-white);
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.75;
}

img {
    max-width: 100%;
}

a {
    color: var(--cafe-orange);
}

a:hover {
    color: var(--cafe-orange-dark);
}

/* Navegación */

.cafe-navbar {
    min-height: 76px;
}

.cafe-navbar-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-right: 12px;
}

.cafe-brand-text {
    color: var(--cafe-blue);
    font-size: 1.3rem;
    font-weight: 700;
}

.cafe-brand-text sup {
    font-size: 0.55rem;
}

.cafe-navbar .nav-link {
    color: #46535a;
    font-size: 0.95rem;
    font-weight: 600;
    margin-left: 14px;
    padding: 26px 10px;
    transition: color 0.25s ease;
}

.cafe-navbar .nav-link:hover {
    color: var(--cafe-orange);
}

/* Hero */

.cafe-hero {
    position: relative;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--cafe-white);
    background:
        linear-gradient(
            90deg,
            rgba(20, 34, 41, 0.88) 0%,
            rgba(20, 34, 41, 0.64) 50%,
            rgba(20, 34, 41, 0.20) 100%
        ),
        url("img/cafe-hero.jpg") center center / cover no-repeat;
}

.cafe-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 102, 0, 0.16),
            transparent 33%
        );
}

.cafe-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 90px;
}

.cafe-eyebrow,
.cafe-section-label {
    display: inline-block;
    color: var(--cafe-orange);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.cafe-hero h1 {
    max-width: 900px;
    margin: 18px 0 22px;
    color: var(--cafe-white);
    font-size: clamp(3rem, 7vw, 6.4rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -2px;
}

.cafe-hero-subtitle {
    max-width: 720px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.18rem, 2vw, 1.55rem);
    line-height: 1.65;
}

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

.cafe-btn-primary,
.cafe-btn-secondary {
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.cafe-btn-primary {
    color: var(--cafe-white);
    border: 1px solid var(--cafe-orange);
    background: var(--cafe-orange);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.25);
}

.cafe-btn-primary:hover,
.cafe-btn-primary:focus {
    color: var(--cafe-white);
    border-color: var(--cafe-orange-dark);
    background: var(--cafe-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(255, 102, 0, 0.3);
}

.cafe-btn-secondary {
    color: var(--cafe-white);
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.cafe-btn-secondary:hover,
.cafe-btn-secondary:focus {
    color: var(--cafe-white);
    border-color: var(--cafe-white);
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.cafe-scroll-indicator {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 26px;
    color: var(--cafe-white);
    font-size: 1.2rem;
    animation: cafeBounce 2s infinite;
}

@keyframes cafeBounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -8px);
    }

    60% {
        transform: translate(-50%, -4px);
    }
}

/* Secciones */

.cafe-section {
    padding: 110px 0;
}

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

.cafe-section-heading {
    max-width: 780px;
    margin: 0 auto 55px;
}

.cafe-section h2 {
    margin-top: 12px;
    margin-bottom: 22px;
    color: var(--cafe-text);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cafe-title-line {
    width: 72px;
    height: 4px;
    margin: 25px auto 32px;
    border-radius: 99px;
    background: var(--cafe-orange);
}

.cafe-lead {
    color: #3f4d54;
    font-size: 1.3rem;
    line-height: 1.8;
}

.cafe-muted-text {
    color: var(--cafe-muted);
    font-size: 1.05rem;
}

/* Tarjetas */

.cafe-feature-card {
    height: 100%;
    padding: 35px 28px;
    border: 1px solid var(--cafe-border);
    border-radius: var(--cafe-radius);
    background: var(--cafe-white);
    box-shadow: 0 10px 35px rgba(38, 50, 56, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.cafe-feature-card:hover {
    border-color: rgba(255, 102, 0, 0.22);
    transform: translateY(-5px);
    box-shadow: var(--cafe-shadow);
}

.cafe-feature-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--cafe-orange);
    border-radius: 18px;
    background: rgba(255, 102, 0, 0.09);
    font-size: 1.45rem;
}

.cafe-feature-card h3 {
    margin-bottom: 14px;
    font-size: 1.2rem;
    font-weight: 700;
}

.cafe-feature-card p {
    margin: 0;
    color: var(--cafe-muted);
    font-size: 0.96rem;
}

/* Lista */

.cafe-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cafe-check-item {
    min-height: 66px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 20px;
    border: 1px solid var(--cafe-border);
    border-radius: 14px;
    background: var(--cafe-white);
    font-weight: 600;
}

.cafe-check-item i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cafe-white);
    border-radius: 50%;
    background: var(--cafe-orange);
    font-size: 0.75rem;
}

/* Lo que no es */

.cafe-not-section {
    background: var(--cafe-soft-blue);
}

.cafe-not-content {
    padding: 50px;
    border-left: 5px solid var(--cafe-orange);
    border-radius: 0 var(--cafe-radius) var(--cafe-radius) 0;
    background: rgba(255, 255, 255, 0.65);
}

.cafe-not-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
}

.cafe-not-list span {
    padding: 10px 18px;
    color: var(--cafe-blue-dark);
    border: 1px solid rgba(120, 149, 163, 0.25);
    border-radius: 999px;
    background: var(--cafe-white);
    font-weight: 700;
}

.cafe-not-final {
    margin-bottom: 12px;
    color: var(--cafe-text);
    font-size: 1.35rem;
    font-weight: 700;
}

.cafe-small-note {
    color: var(--cafe-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Evento */

.cafe-event-card {
    padding: 52px;
    border: 1px solid var(--cafe-border);
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fafbfc 100%
        );
    box-shadow: var(--cafe-shadow);
}

.cafe-event-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    color: var(--cafe-orange);
    border-radius: 999px;
    background: rgba(255, 102, 0, 0.09);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cafe-event-card h3 {
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
}

.cafe-event-details {
    display: grid;
    gap: 13px;
    margin-top: 28px;
}

.cafe-event-details div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cafe-event-details i {
    width: 20px;
    color: var(--cafe-orange);
    text-align: center;
}

.cafe-event-button {
    min-width: 220px;
}

.cafe-event-note {
    margin: 15px 0 0;
    color: var(--cafe-muted);
    font-size: 0.85rem;
}

/* Personas */

.cafe-person-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--cafe-border);
    border-radius: 24px;
    background: var(--cafe-white);
    box-shadow: 0 12px 40px rgba(38, 50, 56, 0.05);
}

.cafe-person-card img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.cafe-person-content {
    padding: 32px;
}

.cafe-person-content h3 {
    margin-bottom: 16px;
    font-size: 1.65rem;
    font-weight: 700;
}

.cafe-person-content p {
    color: var(--cafe-muted);
}

.cafe-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    text-decoration: none;
}

.cafe-text-link i {
    transition: transform 0.25s ease;
}

.cafe-text-link:hover i {
    transform: translateX(4px);
}

/* Acordeón */

.cafe-accordion .accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--cafe-border);
    border-radius: 14px;
}

.cafe-accordion .accordion-button {
    padding: 20px 22px;
    color: var(--cafe-text);
    background: var(--cafe-white);
    font-weight: 700;
    box-shadow: none;
}

.cafe-accordion .accordion-button:not(.collapsed) {
    color: var(--cafe-orange-dark);
    background: rgba(255, 102, 0, 0.05);
}

.cafe-accordion .accordion-body {
    padding: 0 22px 22px;
    color: var(--cafe-muted);
}

/* Formulario */

.cafe-question-section {
    background: var(--cafe-background);
}

.cafe-question-form {
    padding: 38px;
    border: 1px solid var(--cafe-border);
    border-radius: 24px;
    background: var(--cafe-white);
    box-shadow: var(--cafe-shadow);
}

.cafe-question-form .form-label {
    color: #37454c;
    font-weight: 700;
}

.cafe-question-form .form-control {
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid #d9dee1;
    border-radius: 12px;
    box-shadow: none;
}

.cafe-question-form textarea.form-control {
    min-height: 150px;
}

.cafe-question-form .form-control:focus {
    border-color: var(--cafe-orange);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.09);
}

.cafe-hidden-field {
    position: absolute;
    left: -9999px;
}

/* Frase */

.cafe-quote-section {
    padding: 120px 0;
    color: var(--cafe-white);
    background: var(--cafe-blue-dark);
}

.cafe-quote-icon {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 2rem;
}

.cafe-quote-section blockquote {
    margin-bottom: 25px;
    color: var(--cafe-white);
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    font-weight: 600;
    line-height: 1.45;
}

.cafe-quote-section p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

/* Footer */

.cafe-footer {
    padding: 70px 0 25px;
    color: rgba(255, 255, 255, 0.66);
    background: #202b30;
}

.cafe-footer-brand {
    margin-bottom: 10px;
    color: var(--cafe-white);
    font-size: 1.15rem;
    font-weight: 700;
}

.cafe-social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.cafe-social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cafe-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    text-decoration: none;
    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.cafe-social-links a:hover {
    color: var(--cafe-white);
    border-color: var(--cafe-orange);
    background: var(--cafe-orange);
}

.cafe-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cafe-footer-links a {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
    text-decoration: none;
}

.cafe-footer-links a:hover {
    color: var(--cafe-white);
}

.cafe-footer-bottom {
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    text-align: center;
    font-size: 0.82rem;
}

/* Animaciones */

.cafe-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.cafe-reveal.cafe-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (min-width: 992px) {
    .cafe-social-links,
    .cafe-footer-links {
        justify-content: flex-end;
    }
}

@media (max-width: 991px) {
    .cafe-navbar .nav-link {
        margin-left: 0;
        padding: 12px 0;
    }

    .cafe-hero {
        min-height: 820px;
        background-position: 62% center;
    }

    .cafe-hero h1 {
        letter-spacing: -1px;
    }

    .cafe-section {
        padding: 85px 0;
    }

    .cafe-event-card {
        padding: 38px;
    }
}

@media (max-width: 767px) {
    .cafe-brand-text {
        max-width: 220px;
        font-size: 1rem;
        line-height: 1.25;
    }

    .cafe-navbar-logo {
        width: 42px;
        height: 42px;
    }

    .cafe-hero {
        min-height: calc(100vh - 70px);
        text-align: center;
        background-position: 64% center;
    }

    .cafe-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(18, 30, 36, 0.27);
    }

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

    .cafe-btn-primary,
    .cafe-btn-secondary {
        width: 100%;
    }

    .cafe-section {
        padding: 70px 0;
    }

    .cafe-check-grid {
        grid-template-columns: 1fr;
    }

    .cafe-not-content {
        padding: 32px 24px;
    }

    .cafe-event-card {
        padding: 28px 22px;
        text-align: center;
    }

    .cafe-event-details div {
        align-items: flex-start;
        text-align: left;
    }

    .cafe-person-card img {
        height: 340px;
    }

    .cafe-question-form {
        padding: 27px 21px;
    }

    .cafe-footer-links {
        flex-direction: column;
        gap: 7px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}