/* Únete al Equipo - Estilos específicos */

/* Hero Culture Page */
.hero-section.culture-page {
    background-image: url('../img/fondo_rostros.png');
}

.hero-section.culture-page .hero-background-overlay {
    background: rgba(255, 0, 0, 0.7);
}

.hero-section.culture-page .navbar {
    background-color: rgba(255, 0, 0, 1);
}

/* Culture Hero Container */
.culture-hero-container {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 190px);
}

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

.culture-heading {
    font-size: 73px;
    font-weight: 900;
    line-height: 1;
    margin: 0 0 50px 0;
    color: white;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.culture-cta {
    background-color: #91E100;
    color: #000;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid #91E100;
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.culture-cta:hover {
    background-color: white;
    color: #FF0000;
    border-color: white;
}

/* YouTube Section */
.youtube-section {
    background-color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.youtube-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.section-heading {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: #000;
    margin: 0 0 20px 0;
}

.section-subheading {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 60px;
    opacity: 0;
    animation: scaleIn 0.8s ease 0.3s forwards;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 30px;
}

.cta-container {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.video-cta {
    display: inline-block;
    background-color: #91E100;
    color: #000;
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid #91E100;
    text-transform: uppercase;
}

.video-cta:hover {
    background-color: white;
    color: #FF0000;
    border-color: #FF0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

/* Quote Section */
.quote-section {
    background-color: #FF0000;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.quote-text {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.quote-line-1,
.quote-line-2 {
    display: inline;
}

.green-heart {
    color: #91E100;
    font-size: 1.1em;
    margin-left: 8px;
    display: inline-block;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 70%, 100% { transform: scale(1); }
    35% { transform: scale(1.15); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Tablet */
@media (max-width: 1140px) {
    .culture-hero-container {
        padding: 30px;
        min-height: calc(100vh - 150px);
    }
    .culture-heading {
        font-size: 60px;
        margin-bottom: 40px;
    }
    .culture-cta {
        font-size: 16px;
        padding: 16px 32px;
    }
}

@media (max-width: 1024px) {
    .quote-section { padding: 60px 0; }
    .quote-text { font-size: 42px; }
}

/* Mobile */
@media (max-width: 768px) {
    .culture-hero-container {
        padding: 20px;
        flex: 1;
        min-height: calc(100vh - 75px);
    }
    .culture-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .culture-heading {
        font-size: 42px;
        margin-bottom: 30px;
        line-height: 1.1;
    }
    .culture-cta {
        font-size: 16px;
        padding: 14px 28px;
    }
    .youtube-section { padding: 60px 0; }
    .youtube-container { padding: 0 20px; }
    .section-heading {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .section-subheading { font-size: 18px; }
    .section-header { margin-bottom: 40px; }
    .video-wrapper { margin-bottom: 40px; }
    .video-container {
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    .video-cta {
        font-size: 16px;
        padding: 14px 32px;
    }
    .quote-section { padding: 50px 0; }
    .quote-container { padding: 0 10px; }
    .quote-text {
        font-size: 25px;
        line-height: 1.15;
    }
    .quote-line-1,
    .quote-line-2 { display: block; }
    .green-heart {
        margin-left: 6px;
        font-size: 1em;
    }
}

@media (max-width: 390px) {
    .culture-hero-container { padding: 15px; }
    .culture-heading {
        font-size: 36px;
        margin-bottom: 25px;
    }
    .culture-cta {
        font-size: 14px;
        padding: 12px 24px;
    }
}

@media (max-width: 580px) {
    .quote-section { padding: 20px 0; }
    .quote-text {
        font-size: 32px;
        line-height: 1.1;
    }
}

@media (max-width: 400px) {
    .quote-section { padding: 35px 0; }
    .quote-text {
        font-size: 30px;
        line-height: 1.1;
    }
    .green-heart {
        margin-left: 4px;
        font-size: 0.9em;
    }
}
