/* Estilos específicos para la Rama de Hombres */

.hero_hombres {
    padding: 60px 10%;
    color: #000;
    text-align: justify;
    margin-top: -94px;
}

.hero_hombres h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 40px;
    color: #22205F;
}

.hero_hombres p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.objetivos-hombres {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.objetivos-hombres li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.5;
}

.objetivos-hombres li::before {
    content: "•";
    color: #22205F;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.objetivos-hombres strong {
    color: #22205F;
}

.lista-contacto-hombres {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.lista-contacto-hombres li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.lista-contacto-hombres strong {
    color: #22205F;
}

/* Estilos para la sección de noticias */
.noticias-section {
    margin: 0 auto;
    padding: 50px 10%;
}

.noticias-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
}

.noticia-card {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.noticia-card:hover {
    transform: translateY(-5px);
}

.noticia-imagen {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.noticia-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticia-contenido {
    padding: 1.5rem;
}

.noticia-contenido h3 {
    margin: 0 0 1rem 0;
    color: var(--greyBlue);
    font-size: 1.2rem;
}

.noticia-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--greyLight);
}

.fecha {
    color: var(--grey);
    font-size: 0.85rem;
}

.leer-mas {
    color: var(--greyBlue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.leer-mas:hover {
    color: var(--greyNight);
}

/* Estilos para el skeleton loader */
.skeleton-loader {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
}

.skeleton-card {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.skeleton-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-content {
    padding: 1.5rem;
}

.skeleton-title {
    height: 24px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 1rem;
}

.skeleton-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 15px;
    border-top: 1px solid var(--greyLight);
}

.skeleton-date {
    width: 100px;
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-button {
    width: 80px;
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Media queries para responsividad */
@media (max-width: 1024px) {
    .noticia-card {
        flex: 0 1 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .noticia-card {
        flex: 0 1 100%;
    }
    
    .noticias-grid {
        padding: 1rem;
    }
    
    .hero_hombres {
        padding: 40px 5%;
        margin-top: -60px;
    }
    
    .hero_hombres h2 {
        font-size: 1.5rem;
        margin-top: 20px;
    }
    
    .hero_hombres p {
        font-size: 1rem;
    }
    
    .objetivos-hombres li {
        font-size: 1rem;
    }
    
    .lista-contacto-hombres li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero_hombres {
        padding: 30px 5%;
    }

    .hero_hombres h2 {
        font-size: 1.3rem;
    }

    .hero_hombres p {
        font-size: 0.95rem;
    }

    .objetivos-hombres li {
        font-size: 0.95rem;
    }

    .lista-contacto-hombres li {
        font-size: 0.95rem;
    }
}

/* Estilos para la sección Próximamente */
