/* === ESTILO GENERAL === */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(180deg, #f0f6ff, #ffffff);
    color: #333;
}

/* === SECCIÓN HERO (MISMO ESTILO QUE EL PRINCIPAL) === */
.hero {
    background: linear-gradient(135deg, #0074E4, #00a8e8);
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.15), transparent 70%);
    animation: spin 10s infinite linear;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero h1 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.1rem;
    color: #eaf4ff;
    max-width: 700px;
    margin: auto;
}
/* === CONTENEDORES DE SECCIONES === */
.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 40px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section h2 {
    text-align: center;
    color: #0074E4;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
}

.section h2::after {
    content: "";
    display: block;
    width: 250px;
    height: 3px;
    background: #0074E4;
    margin: 10px auto 0;
    border-radius: 2px;
}
.section h3 {
    text-align: center;
    color: #0074E4;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
}

.section h3::after {
    content: "";
    display: block;
    width: 230px;
    height: 3px;
    background: #0074E4;
    margin: 10px auto 0;
    border-radius: 2px;
}
.section h4 {
    text-align: center;
    color: #0074E4;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
}

.section h4::after {
    content: "";
    display: block;
    width: 230px;
    height: 3px;
    background: #0074E4;
    margin: 10px auto 0;
    border-radius: 2px;
}
.section h5 {
    text-align: center;
    color: #0074E4;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
}

.section h5::after {
    content: "";
    display: block;
    width: 230px;
    height: 3px;
    background: #0074E4;
    margin: 10px auto 0;
    border-radius: 2px;
}
.section h6 {
    text-align: center;
    color: #0074E4;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
}

.section h6::after {
    content: "";
    display: block;
    width: 310px;
    height: 3px;
    background: #0074E4;
    margin: 10px auto 0;
    border-radius: 2px;
}

.section p, .section ul {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

/* === VALORES === */
.values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.value-card {
    flex: 1 1 200px;
    background: #f1f8ff;
    border-left: 5px solid #0074E4;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: #0074E4;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: #0074E4;
    color: white;
    transform: translateY(-5px);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero h1 { font-size: 1.9rem; }
    .hero p { font-size: 1rem; }
    .section { padding: 30px 20px; }
}