/* Estilos para páginas de ciclos formativos - Sistemas Microinformáticos y Redes */
:root {
    --primary: #ff6b00;
    --primary-hover: #e55f00;
    --secondary: #6a1b9a;
    --secondary-light: #8e24aa;
    --border-color: #e0e0e0;
    --error-color: #ff3860;
    --success-color: #4CAF50;
    --background-color: #f5f7fa;
    
    /* Colores específicos para SMR - Verde turquesa, diferente a los anteriores */
    --smr-color: #00897b;
    --smr-light: #4ebaaa;
    --smr-dark: #005b4f;
}

/* Estilos adicionales para efectos de animación y feedback visual */
.animacion-pendiente {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.campo-error {
    border-color: #ff3860 !important;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.mensaje-exito {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fila-destacada {
    background-color: rgba(0, 137, 123, 0.1) !important;
    transition: background-color 0.3s ease;
}

/* Banner del ciclo formativo */
.ciclo-banner {
    background-color: var(--smr-color);
    color: #fff;
    padding: 50px 0;
    margin-bottom: 30px;
}

.ciclo-banner .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ciclo-icon-banner {
    flex: 0 0 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--smr-color);
    position: relative;
    padding-bottom: 10px;
}

.ciclo-descripcion h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.ciclo-descripcion p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.ciclo-highlight {
    background-color: rgba(0, 137, 123, 0.1);
    border-left: 4px solid var(--smr-color);
    padding: 15px;
    border-radius: 0 5px 5px 0;
    margin-top: 25px;
}

.ciclo-highlight p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ciclo-highlight i {
    color: var(--smr-color);
    font-size: 20px;
}

.ciclo-data-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.data-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.data-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 137, 123, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.data-icon i {
    font-size: 28px;
    color: var(--smr-color);
}

.data-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.data-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Sección de salidas profesionales */
.salidas-profesionales {
    padding: 60px 0;
    background-color: #fff;
}

.salidas-profesionales h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--smr-color);
    position: relative;
    padding-bottom: 10px;
}

.salidas-profesionales h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.salidas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.salida-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.salida-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.salida-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 137, 123, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.salida-icon i {
    font-size: 32px;
    color: var(--smr-color);
}

.salida-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.salida-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Plan de estudios */
.plan-estudios {
    padding: 60px 0;
    background-color: var(--background-color);
}

.plan-estudios h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--smr-color);
}

.seccion-descripcion {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

.tabla-plan {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

#tabla-modulos {
    width: 100%;
    border-collapse: collapse;
}

#tabla-modulos th, #tabla-modulos td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

#tabla-modulos th {
    background-color: var(--smr-color);
    color: white;
    font-weight: 600;
}

#tabla-modulos th:first-child {
    width: 80px;
}

#tabla-modulos th:nth-child(3) {
    width: 120px;
}

#tabla-modulos th:last-child {
    width: 100px;
}

#tabla-modulos tr:hover {
    background-color: rgba(0, 137, 123, 0.05);
}

#tabla-modulos tr:last-child td {
    border-bottom: none;
}

/* Requisitos de acceso */
.requisitos-acceso {
    padding: 60px 0;
    background-color: #fff;
}

.requisitos-acceso h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--smr-color);
    position: relative;
    padding-bottom: 10px;
}

.requisitos-acceso h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.requisitos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.requisito-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.requisito-item:hover {
    transform: translateY(-5px);
}

.requisito-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 137, 123, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.requisito-icon i {
    font-size: 30px;
    color: var(--smr-color);
}

.requisito-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.requisito-content p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Metodología */
.metodologia {
    padding: 60px 0;
    background-color: var(--background-color);
}

.metodologia h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--smr-color);
    position: relative;
    padding-bottom: 10px;
}

.metodologia h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.metodologia-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.metodologia-texto {
    flex: 1;
}

.metodologia-texto p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-list i {
    color: var(--success-color);
    margin-top: 3px;
}

.metodologia-imagen {
    flex: 1;
}

.metodologia-imagen img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Formulario CTA */
.cta-form {
    padding: 60px 0;
    background-color: var(--smr-color);
    color: white;
}

.form-cta-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.form-cta-text {
    flex: 1;
}

.form-cta-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.form-cta-text p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.form-cta-form {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group.split {
    display: flex;
    gap: 15px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-check input {
    margin-top: 3px;
}

.form-check label {
    font-size: 14px;
    color: #555;
}

.form-check a {
    color: var(--smr-color);
    text-decoration: none;
}

.btn-solicitar {
    width: 100%;
    background-color: var(--smr-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-solicitar:hover {
    background-color: var(--smr-light);
}

/* Preguntas frecuentes */
.faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.faq-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--smr-color);
    position: relative;
    padding-bottom: 10px;
}

.faq-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question h3 {
    font-size: 17px;
    margin: 0;
    color: #333;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
    padding: 15px 20px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .ciclo-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .ciclo-datos {
        justify-content: center;
    }
    
    .ciclo-resumen .container {
        flex-direction: column;
    }
    
    .salidas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .requisitos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metodologia-content {
        flex-direction: column;
    }
    
    .form-cta-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .ciclo-info-banner h1 {
        font-size: 28px;
    }
    
    .salidas-grid {
        grid-template-columns: 1fr;
    }
    
    .tabla-plan {
        overflow-x: auto;
    }
    
    .requisitos-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.split {
        flex-direction: column;
        gap: 15px;
    }
}size: 50px;
}

.ciclo-info-banner {
    flex: 1;
}

.ciclo-info-banner h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.ciclo-datos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ciclo-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Sección de resumen */
.ciclo-resumen {
    padding: 60px 0;
    background-color: var(--background-color);
}

.ciclo-resumen .container {
    display: flex;
    gap: 40px;
}

.ciclo-descripcion {
    flex: 2;
}

.ciclo-descripcion h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--smr-color);
    position: relative;
    padding-bottom: 10px;
}