/* Estilos específicos para la página Saber Más */

/* Sección introductoria */
.intro-section {
    background: linear-gradient(to right, #024, #105daa);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 20%);
    will-change: opacity, transform;
}

.intro-section h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    will-change: opacity, transform;
    position: relative;
}

.intro-section p {
    font-size: 1.2em;
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}

/* Contenedor principal */
.saber-mas-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Sección de información */
.info-section {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
}

.info-section h2 {
    color: #024;
    font-size: 2em;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #105daa;
    position: relative;
}

.info-section p {
    color: #2c3e50;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Tarjetas de información */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #024, #105daa);
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card h3 {
    color: #160279;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.info-card p {
    color: #2c3e50;
    line-height: 1.6;
}

/* Lista de conceptos */
.concepto-list {
    list-style: none;
    padding: 0;
}

.concepto-list li {
    padding: 15px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #160279;
    transition: transform 0.3s ease;
}

.concepto-list li:hover {
    transform: translateX(10px);
}

.concepto-list strong {
    color: #160279;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

/* Citas y referencias */
.cita {
    font-style: italic;
    color: #666;
    padding: 20px;
    border-left: 3px solid #105daa;
    margin: 20px 0;
    background: #f8f9fa;
}

/* Botón de regreso */
.back-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(to right, #024, #105daa);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.back-button:hover {
    transform: translateX(-5px);
}

/* Footer Saber Más */
.footer-sabermas {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 30px 0 20px;
    font-size: 1.1em;
    margin-top: 40px;
}

.footer-sabermas-content {
    max-width: 1200px;
    margin: 0 auto;
    letter-spacing: 1px;
}

/* Nota Técnica Especializada */
.nota-tecnica {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 35px 30px 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 24px rgb(0 0 0 / 8%);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.nota-tecnica h2 {
    color: #024;
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #105daa;
    letter-spacing: 1px;
}

.nota-tecnica p {
    color: #2c3e50;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: center;
}

.nota-tecnica ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}

.nota-tecnica ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #444;
    font-size: 1.08em;
    line-height: 1.6;
}

.nota-tecnica ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #105daa;
    font-size: 1.5em;
    line-height: 1;
}

.nota-tecnica strong {
    color: #105daa;
    font-weight: 600;
}

.nota-tecnica em {
    color: #024;
    font-style: normal;
    font-weight: 500;
    background: linear-gradient(120deg, rgb(16 93 170 / 8%) 0%, rgb(16 93 170 / 8%) 100%);
    padding: 0 4px;
    border-radius: 3px;
}

/* Responsive */
@media (width <= 768px) {
    .saber-mas-container {
        padding: 0 15px;
        margin: 20px auto;
    }

    .info-section {
        padding: 20px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 20px;
    }

    .concepto-list li {
        margin-bottom: 10px;
    }

    .nota-tecnica {
        padding: 20px 10px;
    }

    .nota-tecnica ul {
        max-width: 100%;
    }
}
