/* ==========================================================================
   EQUIPO FEMENINO - ESTILOS ESPECÍFICOS
   Solo los estilos que no están en inde.css
   ========================================================================== */

/* Variables específicas del equipo femenino */
:root {
    --rosa-principal: #c2185b;
    --rosa-claro: #f8bbd9;
    --rosa-oscuro: #880e4f;
}

/* Hero específico para equipo femenino */
.hero-femenino {
    background: linear-gradient(135deg, var(--rosa-principal), var(--rosa-oscuro));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-femenino h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-femenino p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Estadísticas del hero */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contenido principal */
.content-femenino {
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-section h2 {
    color: var(--rosa-principal);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-section strong {
    color: var(--rosa-principal);
}

/* Quote destacada */
.quote-destacada {
    background: var(--rosa-claro);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--rosa-principal);
    margin: 2rem 0;
    font-style: italic;
    position: relative;
}

.quote-destacada::before {
    content: '"';
    font-size: 4rem;
    color: var(--rosa-principal);
    position: absolute;
    top: -10px;
    left: 1rem;
}

/* Características grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--rosa-principal);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--rosa-principal);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--negro);
    margin-bottom: 1rem;
}

/* Lista de objetivos */
.objetivos-lista {
    list-style: none;
    padding: 0;
}

.objetivo-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--rosa-principal);
}

.objetivo-numero {
    background: var(--rosa-principal);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* Galería simple */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* CTA específico */
.cta-femenino {
    background: var(--rosa-principal);
    color: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-femenino h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-femenino p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-femenino {
    background: white;
    color: var(--rosa-principal);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-femenino:hover {
    background: var(--rosa-claro);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-femenino {
        padding: 3rem 0;
    }
    
    .hero-femenino h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }
    
    .content-femenino {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .objetivo-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .cta-femenino {
        padding: 2rem 1rem;
    }
}