@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;600;700&display=swap');

/* --- Reset y configuración base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- Animaciones --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* --- Sección Hero (Principal) --- */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), 
                url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

/* --- Contenedor del texto y botón --- */
.hero-content {
    background: rgba(20, 40, 60, 0.3);
    padding: 50px;
    border-radius: 20px;
    max-width: 650px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

/* --- Título Principal --- */
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #FFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* --- Párrafos de texto --- */
.hero-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #FFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #d4a942, #f0c965);
    color: #2c3e50;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #f0c965, #d4a942);
}

.cta-button.secondary {
    background: linear-gradient(45deg, #d4a942, #b8941f);
    color: #FFF;
    margin-top: 20px;
}

.cta-button.secondary:hover {
    background: linear-gradient(45deg, #b8941f, #d4a942);
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 25px 50px;
}

/* --- Responsive para móviles --- */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        padding: 20px 5% 40px 5%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        padding: 30px 20px 50px 20px;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        border-radius: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 15px;
        padding: 10px 5px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    
    .cta-button {
        padding: 18px 25px;
        font-size: 1.2rem;
        margin: 20px auto 10px auto;
        width: 85%;
        max-width: 350px;
        display: block;
        border-radius: 50px;
    }
    
    .video-cta {
        font-size: 0.9rem;
        padding: 8px 18px;
        letter-spacing: 0.5px;
    }
    
    .video-description {
        font-size: 0.9rem;
        margin-top: 10px;
        padding: 0 5px;
    }
}

/* --- Fondo con patrón de ondas discreto para secciones 2, 3, 4 --- */
.video-section,
.moments-section,
.future-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 5%;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Patrón de ondas discreto para secciones 2, 3, 4 */
.video-section::before,
.moments-section::before,
.future-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Ondas horizontales muy sutiles */
        );
    pointer-events: none;
    z-index: 1;
}

/* Ondas más suaves en los bordes para secciones 2, 3, 4 */
.video-section::after,
.moments-section::after,
.future-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Onda superior muy sutil */
        radial-gradient(ellipse 100% 30px at top center, rgba(59, 130, 246, 0.03) 0%, transparent 70%),
        /* Onda inferior muy sutil */
        radial-gradient(ellipse 100% 30px at bottom center, rgba(59, 130, 246, 0.03) 0%, transparent 70%),
        /* Ondas laterales */
        radial-gradient(ellipse 30px 100% at left center, rgba(59, 130, 246, 0.02) 0%, transparent 70%),
        radial-gradient(ellipse 30px 100% at right center, rgba(59, 130, 246, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* --- Decoraciones náuticas sutiles --- */
.nautical-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 2;
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nautical-decoration:hover {
    opacity: 0.8;
}

.anchor-left {
    top: 20%;
    left: 5%;
    transform: rotate(-15deg);
    animation: pulse 4s infinite;
}

.anchor-right {
    bottom: 20%;
    right: 5%;
    transform: rotate(15deg);
    animation: pulse 4s infinite 2s;
}

.compass-top-right {
    top: 10%;
    right: 8%;
    transform: rotate(25deg);
    animation: pulse 6s infinite 1s;
}

.anchor-bottom-left {
    bottom: 10%;
    left: 8%;
    transform: rotate(-20deg);
    animation: pulse 5s infinite 3s;
}

/* --- Contenido de la sección de video --- */
.video-content {
    text-align: center;
    max-width: 900px;
    z-index: 3;
    position: relative;
}

.video-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    color: #1a365d;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid;
    border-image: linear-gradient(45deg, #1a365d, #2c5282, #3182ce) 1;
}

.video-content .subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    padding: 18px 30px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.video-content .subtitle .golden-text {
    color: #d4a942;
}

/* --- Contenedor del video --- */
.video-container {
    background: linear-gradient(45deg, #1a365d, #2c5282, #3182ce);
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
}

/* --- Video real --- */
.video-container video {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    max-height: 400px;
}

/* --- Overlay del video --- */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-container:hover .video-overlay {
    opacity: 0.9;
}

.play-button {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    transition: transform 0.3s ease;
}

.video-container:hover .play-button {
    transform: scale(1.1);
}

.video-cta {
    background: rgba(255, 255, 255, 0.95);
    color: #1a365d;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    padding: 12px 25px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #d4a942;
}

.video-description {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 1.0rem;
    font-weight: 500;
    font-style: italic;
    color: #2c3e50;
    margin-top: 15px;
    padding: 0 10px;
}

/* --- Tercera Sección: Momentos del día --- */
.moments-content {
    text-align: center;
    max-width: 1200px;
    z-index: 3;
    position: relative;
}

.moments-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    color: #1a365d;
    margin-bottom: 60px;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: inline-block;
    border-left: 5px solid;
    border-image: linear-gradient(45deg, #1a365d, #2c5282, #3182ce) 1;
}

/* --- Grid de momentos --- */
.moments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 35px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Tarjetas de momentos --- */
.moment-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid;
    border-image: linear-gradient(45deg, #1a365d, #2c5282, #3182ce) 1;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.moment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 169, 66, 0.1), transparent);
    transition: left 0.5s;
}

.moment-card:hover::before {
    left: 100%;
}

.moment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-image: linear-gradient(45deg, #2c5282, #3182ce, #4299e1) 1;
}

.moment-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.moment-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    color: #1a365d;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.moment-card p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
}

.moment-card p em {
    font-style: italic;
    color: #1a365d;
    font-weight: 600;
}

/* --- Cuarta Sección: Historia personal --- */
.story-content {
    text-align: center;
    max-width: 1100px;
    z-index: 3;
    position: relative;
    margin: 0 auto;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    color: #1a365d;
    margin-bottom: 25px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 35px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid;
    border-image: linear-gradient(45deg, #1a365d, #2c5282, #3182ce) 1;
}

.story-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 50px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.9);
    padding: 18px 30px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.story-subtitle .highlight {
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: center;
    margin: 50px 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid;
    border-image: linear-gradient(45deg, #1a365d, #2c5282, #3182ce) 1;
}

.story-text {
    text-align: left;
}

.story-text p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 25px;
}

.story-text p em {
    font-style: italic;
    color: #1a365d;
    font-weight: 600;
}

.story-text p strong {
    color: #1a365d;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.family-photo {
    width: 300px;
    height: auto;
    border-radius: 25px;
    border: 4px solid #d4a942;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    object-fit: cover;
    max-height: 400px;
}

.family-photo:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-image: linear-gradient(45deg, #2c5282, #3182ce, #4299e1) 1;
}

.story-conclusion {
    margin-top: 40px;
}

.final-message {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: #1a365d;
    font-style: italic;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 40px;
    border-radius: 15px;
    display: inline-block;
    border-left: 5px solid;
    border-image: linear-gradient(45deg, #1a365d, #2c5282, #3182ce) 1;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* --- Quinta Sección: El Faro --- */
.lighthouse-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 5%;
}

.lighthouse-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.lighthouse-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.8), rgba(26, 54, 93, 0.9)),
                url('faro-original.png');
    background-size: cover;
    background-position: center center;
    z-index: 0;
    display: none;
}



.lighthouse-content {
    max-width: 900px;
    z-index: 3;
    position: relative;
    text-align: center;
}

.lighthouse-text-centered {
    text-align: center;
}

.lighthouse-text-centered h2 {
    color: #FFFFFF !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 1), 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
    font-weight: 700 !important;
}

.lighthouse-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    color: #FFFFFF !important;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 1), 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
    letter-spacing: 2px;
    line-height: 1.1;
}

.lighthouse-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.lighthouse-subtitle .highlight {
    color: #f0c965;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.7), 0 0 10px rgba(240, 201, 101, 0.3);
}

.lighthouse-description {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-left: 5px solid;
    border-image: linear-gradient(45deg, #1a365d, #2c5282, #3182ce) 1;
}

.lighthouse-description p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 15px;
}

.lighthouse-description p:last-child {
    margin-bottom: 0;
}

.lighthouse-message {
    background: linear-gradient(135deg, #d4a942, #f0c965);
    padding: 25px 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.lighthouse-message p {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    color: #1a365d;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lighthouse-message p:last-child {
    margin-bottom: 0;
}

.lighthouse-benefits {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 1.8rem;
    margin-right: 20px;
    min-width: 40px;
}

.benefit-item p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
}

.lighthouse-final-message {
    background: rgba(26, 54, 93, 0.9);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.lighthouse-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFF;
    font-style: italic;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.lighthouse-quote:last-child {
    margin-bottom: 0;
}

/* --- Sexta Sección: Testimonios WhatsApp --- */
.testimonials-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 5%;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Patrón de ondas discreto para sección de testimoniales */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Ondas horizontales muy sutiles */
        );
    pointer-events: none;
    z-index: 1;
}

/* Ondas más suaves en los bordes para sección de testimoniales */
.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Onda superior muy sutil */
        radial-gradient(ellipse 100% 30px at top center, rgba(59, 130, 246, 0.03) 0%, transparent 70%),
        /* Onda inferior muy sutil */
        radial-gradient(ellipse 100% 30px at bottom center, rgba(59, 130, 246, 0.03) 0%, transparent 70%),
        /* Ondas laterales */
        radial-gradient(ellipse 30px 100% at left center, rgba(59, 130, 246, 0.02) 0%, transparent 70%),
        radial-gradient(ellipse 30px 100% at right center, rgba(59, 130, 246, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.testimonials-content {
    max-width: 800px;
    text-align: center;
    z-index: 3;
    position: relative;
}

.testimonials-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.testimonials-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 50px;
    font-weight: 600;
}

.whatsapp-messages {
    margin: 50px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-message {
    margin-bottom: 20px;
    display: flex;
    animation: fadeInUp 0.6s ease-out forwards;
}

.whatsapp-message.left {
    justify-content: flex-start;
}

.whatsapp-message.right {
    justify-content: flex-end;
}

.message-bubble {
    background: #FFF;
    padding: 15px 20px;
    border-radius: 18px;
    max-width: 70%;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 169, 66, 0.2);
}

.whatsapp-message.left .message-bubble {
    border-bottom-left-radius: 4px;
    margin-left: 0;
}

.whatsapp-message.right .message-bubble {
    border-bottom-right-radius: 4px;
    background: #DCF8C6;
    margin-right: 0;
}

.message-bubble p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

.message-check {
    color: #25D366;
    font-size: 0.8rem;
    text-align: right;
    margin-top: 5px;
    font-weight: bold;
}

.testimonials-cta {
    margin-top: 60px;
}

.cta-highlight {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    color: #1a365d;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cta-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.testimonials-btn {
    background: linear-gradient(45deg, #d4a942, #f0c965);
    color: #1a365d;
    font-size: 1.2rem;
    padding: 20px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 8px 25px rgba(212, 169, 66, 0.3);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.testimonials-btn:hover {
    background: linear-gradient(45deg, #f0c965, #d4a942);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 169, 66, 0.4);
}

/* --- Séptima Sección: Madres Faro --- */
.mothers-lighthouse-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 5%;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Patrón de ondas discreto para sección de madres faro */
.mothers-lighthouse-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Ondas horizontales muy sutiles */
        );
    pointer-events: none;
    z-index: 1;
}

/* Ondas más suaves en los bordes para sección de madres faro */
.mothers-lighthouse-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Onda superior muy sutil */
        radial-gradient(ellipse 100% 30px at top center, rgba(59, 130, 246, 0.03) 0%, transparent 70%),
        /* Onda inferior muy sutil */
        radial-gradient(ellipse 100% 30px at bottom center, rgba(59, 130, 246, 0.03) 0%, transparent 70%),
        /* Ondas laterales */
        radial-gradient(ellipse 30px 100% at left center, rgba(59, 130, 246, 0.02) 0%, transparent 70%),
        radial-gradient(ellipse 30px 100% at right center, rgba(59, 130, 246, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.mothers-lighthouse-content {
    max-width: 900px;
    text-align: center;
    z-index: 3;
    position: relative;
}

.mothers-lighthouse-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    color: #1a365d;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.mothers-lighthouse-content .highlight {
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.mothers-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
    font-style: italic;
}

.mothers-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 600;
}

.video-testimonials {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.video-testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid;
    border-image: linear-gradient(45deg, #1a365d, #2c5282, #3182ce) 1;
    height: fit-content;
    width: fit-content;
    margin: 0 auto;
}

.video-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-image: linear-gradient(45deg, #2c5282, #3182ce, #4299e1) 1;
}

.video-container-testimonial {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-container-testimonial:hover {
    transform: scale(1.02);
}

.video-container-testimonial video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Formato específico para video vertical (Marisa) */
.marisa-video .video-container-testimonial {
    aspect-ratio: 9/16;
    max-height: 380px;
    width: auto;
}

/* Formato específico para video horizontal (Ester) */
.ester-video .video-container-testimonial {
    aspect-ratio: 16/9;
    max-height: 380px;
    width: auto;
}

.video-overlay-testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.video-overlay-testimonial:hover {
    background: rgba(0, 0, 0, 0.6);
}

.play-button-testimonial {
    background: rgba(212, 169, 66, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-button-testimonial:hover {
    background: rgba(240, 201, 101, 1);
    transform: scale(1.1);
}

.play-icon {
    color: #1a365d;
    font-size: 2rem;
    font-weight: bold;
    margin-left: 5px;
}

.video-info {
    text-align: center;
}

.video-title {
    color: #FFF;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    margin: 0 0 8px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.video-subtitle {
    color: #f0c965;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.mothers-cta {
    margin-top: 50px;
}

.mothers-btn {
    background: linear-gradient(45deg, #d4a942, #f0c965);
    color: #1a365d;
    font-size: 1.3rem;
    padding: 20px 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    border: none;
    box-shadow: 0 8px 25px rgba(212, 169, 66, 0.3);
    position: relative;
}

.mothers-btn:hover {
    background: linear-gradient(45deg, #f0c965, #d4a942);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 169, 66, 0.4);
}

.mothers-btn::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 15px solid #d4a942;
}

.mothers-btn::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 15px solid #d4a942;
}

/* --- Octava Sección: Llamada Final --- */
.final-decision-section {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.95), rgba(44, 82, 130, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="waves-final" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><path d="M0 100 Q50 75 100 100 T200 100" stroke="%23f0c965" stroke-width="0.8" fill="none" opacity="0.1"/><circle cx="100" cy="100" r="2" fill="%23d4a942" opacity="0.2"/></pattern></defs><rect width="1000" height="1000" fill="url(%23waves-final)"/></svg>');
    background-size: cover, 400px 400px;
    background-attachment: fixed;
    padding: 100px 5%;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.captain-hat-decoration {
    position: absolute;
    top: 30px;
    right: 50px;
    width: 120px;
    height: 60px;
    opacity: 0.7;
    z-index: 2;
}

.final-decision-content {
    max-width: 900px;
    z-index: 3;
    position: relative;
}

.final-decision-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    color: #FFF;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.final-decision-content .highlight {
    color: #f0c965;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.final-messages {
    margin: 50px 0;
}

.final-message-1,
.final-message-2,
.final-message-3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    color: #FFF;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.final-message-2 {
    font-size: 1.5rem;
    color: #f0c965;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.final-cta-container {
    margin: 60px 0;
}

.final-cta-button {
    background: linear-gradient(45deg, #d4a942, #f0c965);
    color: #1a365d;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    padding: 25px 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(212, 169, 66, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.final-cta-button:hover {
    background: linear-gradient(45deg, #f0c965, #d4a942);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 169, 66, 0.6);
}

.final-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.final-cta-button:hover::before {
    left: 100%;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-item p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #FFF;
    margin: 0;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.final-choice {
    margin-top: 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(240, 201, 101, 0.3);
}

.choice-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    color: #FFF;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.choice-highlight {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #FFF;
    margin: 0;
    font-weight: 600;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.choice-highlight .golden {
    color: #f0c965;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}





/* --- Responsive para móviles --- */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .video-section,
    .moments-section,
    .future-section,
    .lighthouse-section,
    .testimonials-section,
    .mothers-lighthouse-section,
    .final-decision-section {
        background-attachment: scroll;
        padding: 40px 5%;
        min-height: auto;
    }
    
    .hero {
        padding: 20px 5% 40px 5%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-attachment: scroll;
    }
    
    .moments-content h2,
    .video-content h2 {
        font-size: 1.8rem;
        padding: 10px 5px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 15px;
        padding: 10px 5px;
    }
    
    .video-content .subtitle {
        font-size: 1.0rem;
        padding: 10px 15px;
        margin-bottom: 20px;
    }
    
    .moments-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .moment-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .moment-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .moment-card p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
        text-align: center;
    }
    
    .story-text {
        text-align: center;
        order: 2;
    }
    
    .story-text h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        line-height: 1.3;
        padding: 12px 15px;
    }
    
    .story-text p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .family-photo {
        width: 280px;
        max-height: 350px;
        margin: 0 auto;
        order: 1;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .lighthouse-section {
        padding: 80px 8%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), 
                    url('./faro-mobile.png') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    /* Ocultar ::before original que causa conflictos */
    .lighthouse-section::before {
        display: none !important;
    }
    
    .lighthouse-content {
        text-align: center;
        max-width: 100%;
    }
    
    .lighthouse-background-video {
        display: none !important; /* Ocultar video en móvil para mostrar imagen de fondo */
    }
    
    /* Optimizar videos para móvil manteniendo funcionalidad */
    video {
        max-width: 100%;
        height: auto;
        preload: metadata;
    }
    
    .video-container video {
        max-width: 100%;
        height: auto;
    }
    
    /* Contenido por encima del fondo del faro */
    .lighthouse-content {
        position: relative;
        z-index: 3;
        text-align: center;
        max-width: 100%;
    }
    
    .lighthouse-text h2,
    .lighthouse-text-centered h2 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 20px;
        color: #FFFFFF !important;
        text-shadow: 4px 4px 8px rgba(0, 0, 0, 1), 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
        font-weight: 700 !important;
        opacity: 1 !important;
    }
    
    .lighthouse-subtitle {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 25px;
        color: #FFF !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
        font-weight: 600 !important;
    }
    
    .lighthouse-benefits {
        margin: 40px 0;
        gap: 25px;
    }
    
    .benefit-item {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .benefit-item p {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .lighthouse-final-message {
        margin-top: 40px;
    }
    
    .lighthouse-quote {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .testimonials-content h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        line-height: 1.3;
        padding: 8px 12px;
    }
    
    .testimonials-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
        line-height: 1.4;
    }
    
    .message-bubble {
        max-width: 85%;
        padding: 12px 16px;
    }
    
    .cta-highlight {
        font-size: 1.6rem;
    }
    
    .testimonials-btn {
        width: 100%;
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .mothers-lighthouse-content h2 {
        font-size: 1.3rem;
        line-height: 1.3;
        padding: 8px 12px;
    }
    
    .mothers-subtitle {
        font-size: 1.1rem;
    }
    
    .mothers-description {
        font-size: 1rem;
    }
    
    .video-testimonials {
        flex-direction: column;
        gap: 40px;
        padding: 0 10px;
    }
    
    .video-testimonial-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .marisa-video .video-container-testimonial {
        max-height: 450px;
    }
    
    .ester-video .video-container-testimonial {
        max-height: 450px;
    }
    
    .mothers-btn {
        width: 100%;
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .mothers-btn::before,
    .mothers-btn::after {
        display: none;
    }
    
    .captain-hat-decoration {
        display: none;
    }
    
    .final-decision-content h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 20px;
        padding: 8px 12px;
    }
    
    .final-cta-button {
        padding: 25px 30px;
        font-size: 1.4rem;
        width: 95%;
        max-width: 500px;
        margin: 35px auto;
        border-radius: 50px;
    }
    
    .cta-button {
        padding: 18px 25px;
        font-size: 1.2rem;
        margin: 20px auto 10px auto;
        width: 85%;
        max-width: 350px;
        display: block;
        border-radius: 50px;
    }
    
    .video-cta {
        font-size: 0.9rem;
        padding: 8px 18px;
        letter-spacing: 0.5px;
    }
    
    .video-description {
        font-size: 0.9rem;
        margin-top: 10px;
        padding: 0 5px;
    }
    
    .final-message-1,
    .final-message-2,
    .final-message-3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    /* Hero content ya está definido arriba */
}
    
    .trust-indicators {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .choice-text {
        font-size: 1.1rem;
    }
    
    .choice-highlight {
        font-size: 1.2rem;
    }
    

    

    
    .video-container video {
        max-height: 300px;
    }
    
    .nautical-decoration {
        width: 60px;
        height: 60px;
        opacity: 0.4;
    }
}


/* OPTIMIZACIÓN SUAVE PARA MÓVIL */
@media (max-width: 768px) {
    /* Reducir animaciones pero mantener funcionalidad */
    *, *::before, *::after {
        animation-duration: 0.2s !important;
        transition-duration: 0.2s !important;
    }
    
    /* Optimizar imágenes */
    img {
        image-rendering: optimizeSpeed;
    }
    
    /* Simplificar sombras pero mantenerlas */
    .cta-button,
    .whatsapp-message,
    .moment-card {
        box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    }
}

/* --- Botón temprano en testimonios --- */
.early-cta {
    text-align: center;
    margin: 30px 0;
}

.early-testimonials-btn {
    background: linear-gradient(45deg, #d4a942, #f0c965);
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    margin: 20px auto;
    display: inline-block;
}

.early-testimonials-btn:hover {
    background: linear-gradient(45deg, #f0c965, #d4a942);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 169, 66, 0.4);
}

/* --- Botón en introducción de historia --- */
.story-intro-cta {
    text-align: center;
    margin: 30px 0 40px 0;
}

.story-intro-btn {
    background: linear-gradient(45deg, #d4a942, #f0c965);
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    margin: 20px auto;
    display: inline-block;
}

.story-intro-btn:hover {
    background: linear-gradient(45deg, #f0c965, #d4a942);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 169, 66, 0.4);
}

/* --- Botón después del video principal --- */
.video-post-cta {
    text-align: center;
    margin: 40px 0 20px 0;
    padding: 0 20px;
}

.video-post-btn {
    background: linear-gradient(45deg, #d4a942, #f0c965);
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    margin: 20px auto;
    display: inline-block;
}

.video-post-btn:hover {
    background: linear-gradient(45deg, #f0c965, #d4a942);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 169, 66, 0.4);
}


/* --- Botón del Faro --- */
.lighthouse-cta {
    text-align: center;
    margin-top: 40px;
}

.lighthouse-btn {
    font-size: 1rem;
    padding: 18px 35px;
}

@media (max-width: 768px) {
    .lighthouse-cta {
        margin-top: 30px;
    }
    
    .lighthouse-btn {
        font-size: 0.9rem;
        padding: 16px 30px;
    }
}
