/* Estilos para la sección de reseñas colapsible */
#reseñas h2 {
    cursor: pointer;
    user-select: none;
}

#reseñas h2:hover {
    color: #007bff;
}

.reseñas-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.reseña-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    max-width: 300px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.reseña-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reseña-header h4 {
    margin: 0;
    font-size: 1.1em;
}

.estrellas {
    font-size: 1.2em;
}

.reseña-comentario {
    font-style: italic;
    color: #555;
    margin: 0;
}

/* Estilos para la sección de videos colapsible */
#videos h2 {
    cursor: pointer;
    user-select: none;
}

#videos h2:hover {
    color: #007bff;
}

.videos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    max-width: 300px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.video-card a {
    text-decoration: none;
    color: #007bff;
}

.video-card a:hover {
    color: #0056b3;
}

.video-card h4 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.video-card p {
    margin: 0;
    font-size: 0.9em;
}

/* Estilos para la sección de fases */
.fases-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fase-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.fase-card h3 {
    margin: 0 0 10px 0;
    color: #007bff;
}

.fase-card h4 {
    margin: 0 0 15px 0;
    font-style: italic;
    color: #555;
}

.fase-card p {
    margin: 0;
    line-height: 1.6;
}

/* Estilos para la sección de información técnica colapsible */
#info-tecnica h2 {
    cursor: pointer;
    user-select: none;
}

#info-tecnica h2:hover {
    color: #007bff;
}

.info-tecnica-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.info-tecnica-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    max-width: 300px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.info-tecnica-card a {
    text-decoration: none;
    color: #007bff;
}

.info-tecnica-card a:hover {
    color: #0056b3;
}

.info-tecnica-card h4 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.info-tecnica-card p {
    margin: 0;
    font-size: 0.9em;
}