/* Estilos para los botones */
.btn-block {
    padding: 10px 15px;  /* Un poco más compacto */
    font-size: 14px;
    font-weight: 600;
    color: black;  /* Texto negro */
    border: none;
    background-color: #D96C2F;  /* Color naranja (puedes cambiarlo) */
}

/* Colores específicos para cada botón */
.btn-primary {
    background-color: #dc8e06;
    color: white;
}
.btn-success {
    background-color: #e3aa48;
    color: white;
}
.btn-info {
    background-color: #37add0;
    color: white;
}

/* Eliminar todos los efectos hover */
.btn-block:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.9;  /* Solo un leve cambio para indicar interacción */
}



/* Estilos para los requisitos */
.requisitos-card {
    border-left: 5px solid #D96C2F;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.requisitos-title {
    color: #D96C2F;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.requisito-item {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
}

.requisito-icon {
    color: #D96C2F;
    font-size: 1.1rem;
    margin-right: 12px;
    min-width: 24px;
    text-align: center;
}

.requisito-text {
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.requisito-subitem {
    display: flex;
    margin-left: 36px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    align-items: flex-start;
}

.requisito-subitem i {
    color: #6c757d;
    margin-right: 8px;
    font-size: 0.7rem;
    margin-top: 5px;
}

.requisito-sublist {
    list-style-type: none;
    padding-left: 5px;
    margin-top: 5px;
    margin-bottom: 0;
}

.requisito-sublist li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.requisito-sublist li:before {
    content: "•";
    color: #6c757d;
    position: absolute;
    left: 0;
}

.alert-item {
    background-color: #fff8e6;
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid #ffc107;
}

.alert-item .requisito-icon {
    color: #ffc107;
}

/* Estilos generales */
.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.card-body {
    padding: 20px;
}

h1 {
    font-size: 1.5rem;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-block {
        margin-bottom: 10px;
    }

    .requisito-text, .requisito-subitem {
        font-size: 0.8rem;
    }

    .requisito-subitem {
        margin-left: 30px;
    }
}
/* Ocultamos los contenidos colapsables por defecto */
.collapse-content {
    display: none;
}

/* Cuando un contenido está activo */
.collapse-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Eliminamos cualquier margen o padding que pueda crear espacio */
#requisitosContainer {
    transition: all 0.3s ease;
}

/* Animación para suavizar la transición */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.footer {
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.balanced-row {
    margin-bottom: 0.5rem;
}

.balanced-item {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

.balanced-icon {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-right: 0.8rem;
    min-width: 20px;
}

.balanced-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balanced-value {
    font-size: 0.9rem;
    color: white;
    line-height: 1.3;
}

.footer-copyright-container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.copyright-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 576px) {
    .footer-copyright-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .social-icons {
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .balanced-item {
        margin-bottom: 0.3rem;
    }

    .balanced-icon {
        font-size: 0.9rem;
        margin-right: 0.6rem;
    }
}

/* Estilos mínimos para mejor legibilidad */
.table {
    font-size: 0.9rem;
    border-collapse: separate;
    border-spacing: 0;
}

.table th {
    font-weight: 500;
    letter-spacing: normal;
    text-transform: none;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.table td, .table th {
    padding: 0.5rem 0.75rem;
    border: 1px solid #dee2e6;
}

.badge {
    font-weight: normal;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}