.ytp-large-play-button ytp-button ytp-large-play-button-red-bg ytp-shorts-mode {
    opacity: 25% !important;
}

body {
    box-sizing: border-box;
}

:root {
    --navy: #1e3a5f;
    --sage: #7fa88c;
    --sage-light: #a8c5b8;
    --cream: #faf9f6;
    --warm-white: #ffffff;
    --text-dark: #2d3748;
}

.font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

.font-sans {
    font-family: 'Montserrat', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(135deg, #faf9f6 0%, #f0f4f1 50%, #e8f0eb 100%);
}

.neural-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e3a5f' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3Ccircle cx='10' cy='10' r='1.5'/%3E%3Ccircle cx='50' cy='10' r='1.5'/%3E%3Ccircle cx='10' cy='50' r='1.5'/%3E%3Ccircle cx='50' cy='50' r='1.5'/%3E%3Cpath d='M30 30L10 10M30 30L50 10M30 30L10 50M30 30L50 50' stroke='%231e3a5f' stroke-opacity='0.02' stroke-width='0.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.3);
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #7fa88c40, transparent);
}

:root {
    --accent-yellow: #F5C142;
}

.highlight {
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 1.08em;
    line-height: 1;
}

.aspect-9-16 {
    aspect-ratio: 9 / 16;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
}

.video-embed {
    position: relative;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
}

/* Modal reserva */
#modal-reserva {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 60;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
}

#modal-reserva.show {
    display: flex;
}

#modal-reserva .modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

#modal-reserva .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

#modal-reserva .modal-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 16px;
}

#modal-reserva input[type="text"],
#modal-reserva input[type="tel"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

#modal-reserva .success {
    text-align: center;
    padding: 16px 8px;
}

@view-transition {
    navigation: auto;
}