 /* =========================================================
    CONFIGURACIÓN GENERAL
    ========================================================= */

body {
    background-color: #f9fafd;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    color: #03133e;
    line-height: 1.6;
    -webkit-font-smoothing: "antialiased";
}


/* =========================================================
   HEADER
   ========================================================= */

#mi-header {
    background-color: #c0c2c6;
    padding: 15px 40px;
    position: relative;
}


/* =========================================================
   CONTENEDOR DEL HEADER
   ========================================================= */

.contenedor {
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo img {
    width: 200px;
    height: auto;
}


/* =========================================================
   BOTÓN HAMBURGUESA
   ========================================================= */

.hamburguesa {
    display: none;
}


/* =========================================================
   SECCIÓN 1 - HERO
   ========================================================= */

.hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 90%;
    gap: 40px;
    margin: auto;
    padding: 40px 0;
}


/* =========================================================
   TEXTO DEL HERO
   ========================================================= */

.hero-texto {
    flex: 1;
}


/* =========================================================
   SALUDO
   ========================================================= */

.hero-texto h4 {
    font-size: 20px;
    margin: 0 0 25px;
    font-size: clamp(15px, 2vw, 20px);
}


/* =========================================================
   TÍTULO PRINCIPAL
   ========================================================= */

.hero-texto h1 {
    font-size: 80px;
    line-height: 1.0;
    margin: 0;
    font-size: clamp(42px, 5vw, 80px);
}


/* =========================================================
   DESCRIPCIÓN
   ========================================================= */

.hero-texto p {
    font-size: 20px;
    margin-top: 25px;
    font-size: clamp(13px, 1vw, 20px);
}


/* =========================================================
   ACCIONES DEL HERO
   ========================================================= */


/* =========================================================
   TELÉFONO
   ========================================================= */

.social-box {
    width: 100%;
    display: flex;
    justify-content: center;
}


.social-box a {
    background: #efb508;
    color: #03133e;
    padding: 7px 25px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: bold;
    margin-top: 40px;
    text-decoration: none !important;
}


/* =========================================================
   REDES SOCIALES
   ========================================================= */

.social-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}


.social-hero a {
    display: inline-block;
}


.social-hero img {
    width: 20px;
    height: 20px;
}


/* =========================================================
   IMAGEN DEL HERO
   ========================================================= */

.hero-imagen {
    flex: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   CONTENEDOR DE IMAGEN
   ========================================================= */

.video-fix {
    width: 100%;
    height: 100%;
}


.wistia-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
    box-sizing: border-box;
}


/* =========================================================
   IMAGEN DEL HERO
   ========================================================= */

.hero-imagen img {
    width: 100%;
    height: auto;
}


/* =========================================================
   SECCIÓN 2 - QUÉ APRENDERÁS
   ========================================================= */

.seccion-aprendizaje {
    background: #ffffff;
    padding: 80px 20px;
}


/* =========================================================
   CONTENEDOR DE LA SECCIÓN 2
   ========================================================= */

.aprendizaje-contenedor {
    max-width: 1100px;
    margin: auto;
}


/* =========================================================
   ENCABEZADO DE LA SECCIÓN 2
   ========================================================= */

.aprendizaje-encabezado {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}


/* =========================================================
   TÍTULO DE LA SECCIÓN 2
   ========================================================= */

.aprendizaje-encabezado h2 {
    font-size: clamp(30px, 5vw, 48px);
    color: #03133e;
    line-height: 1.2;
    margin: 0 0 20px;
}


/* =========================================================
   TEXTO DE LA SECCIÓN 2
   ========================================================= */

.aprendizaje-encabezado p {
    font-size: clamp(16px, 2vw, 19px);
    color: #555;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   GRID DE TARJETAS
   ========================================================= */

.aprendizaje-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* =========================================================
   TARJETAS
   ========================================================= */

.aprendizaje-card {
    background: #f8fbff;
    border: 2px solid #e0e6f0;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}


/* =========================================================
   EFECTO HOVER
   ========================================================= */

.aprendizaje-card:hover {
    transform: translateY(-6px);
    border-color: #0d6efd;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   ICONOS
   ========================================================= */

.aprendizaje-icono {
    font-size: 42px;
    margin-bottom: 20px;
}


/* =========================================================
   TÍTULOS DE LAS TARJETAS
   ========================================================= */

.aprendizaje-card h3 {
    font-size: 22px;
    color: #03133e;
    margin: 0 0 15px;
}


/* =========================================================
   TEXTOS DE LAS TARJETAS
   ========================================================= */

.aprendizaje-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .hero-texto h1 {
        font-size: clamp(38px, 5vw, 60px);
    }

}


/* =========================================================
   RESPONSIVE - MÓVIL
   ========================================================= */

@media (max-width: 768px) {

    /* =========================
       HERO
       ========================= */

    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0;
        margin: 0;
        width: 100%;
    }


    .hero-texto {
        width: 100%;
        padding: 40px 20px 0;
        box-sizing: border-box;
    }


    .hero-texto h4 {
        margin-bottom: 25px;
    }


    .hero-texto p {
        margin-top: 10px;
        margin-bottom: 5px;
    }


    .hero-imagen {
        width: 100%;
        flex: none;
    }


    /* =========================
       REDES
       ========================= */

    .social-hero {
        margin-top: 10px;
    }


    .social-hero a {
        display: inline-block;
    }


    .social-hero img {
        width: 20px;
        height: 20px;
        margin-left: 8px;
    }


    /* =========================
       SECCIÓN 2
       ========================= */

    .seccion-aprendizaje {
        padding: 60px 20px;
    }


    .aprendizaje-grid {
        grid-template-columns: 1fr;
    }


    .aprendizaje-card {
        padding: 30px 20px;
    }

}