/* Reset y Variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #00AAF8;
    --primary-yellow: #FFCE00;
    --background-gray: #EEF2F7;
    --black: #212121;
    --white: #ffffff;
    --border-gray: #CECECE;
    --font-family: 'Open Sans', sans-serif;
    --border-radius: 13px;
    --button-radius: 50px;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Fijo */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #00AAF8 !important;
    height: 80px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-fixed .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Contenido Principal */
.main-content {
    margin-top: -50px;
    min-height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-direction: column;
}

.hero-container {
    width: 100%;
    min-height: 584px;
    background: var(--background-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.hero-section {
    width: 100%;
    max-width: 1320px;
    height: 384.92px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    padding: 0 0px;
}

/* Columna Izquierda */
.left-column {
    width: 55%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
}

.main-title {
    align-self: stretch;
}

.title-highlight {
    color: var(--primary-blue);
    font-size: 45px;
    font-weight: 700;
    word-wrap: break-word;
    line-height: 50px; /* 111.111% */
    letter-spacing: -1.8px;
}

.title-main {
    color: var(--black);
    font-size: 45px;
    font-weight: 700;
    word-wrap: break-word;
    line-height: 50px; /* 111.111% */
letter-spacing: -1.8px;
}

.content-wrapper {
    width: 100%;
    max-width: 507px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
}

.date-time-info {
    width: 295px;
    padding-top: 5px;
    padding-bottom: 5px;
    outline: 1px var(--primary-blue) solid;
    outline-offset: -1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 15px;
}

.info-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
}

.icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.info-item span {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 700;
    word-wrap: break-word;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
}

.benefit-item {
    align-self: stretch;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.check-icon {
    width: 12px;
    height: 10px;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    word-wrap: break-word;
}

.cta-button {
    padding: 12px 24px;
    background: var(--primary-yellow);
    border-radius: 50px;
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    min-width: 220px;
}

.cta-button span {
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    word-wrap: break-word;
}

.cta-button:hover {
    background: #E6B800;
    transform: translateY(-2px);
}

/* Columna Derecha */
.right-column {
    width: 45%;
    max-width: 580px;
    height: 320px;
}

.hero-image {
    width: 100%;
    height: 100%;
    max-width: 580px;
    max-height: 320px;
    flex-shrink: 0;
    border-radius: 13px;
    object-fit: cover;
}

/* Segunda Sección - Contenido y Aprendizaje */
.content-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.content-container {
    width: 100%;
    max-width: 1320px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 69px;
    padding: 0;
    margin: 0;
}

.content-left {
    width: 740px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
    padding: 0;
    margin: 0;
}

.content-title {
    align-self: stretch;
    color: var(--primary-blue);
    font-size: 39.81px;
    font-weight: 700;
    line-height: 43px;
    word-wrap: break-word;
}

.content-items {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
}

.content-item {
    align-self: stretch;
    padding-top: 5px;
    padding-bottom: 12px;
    border-bottom: 1px var(--border-gray) solid;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.content-item:last-child {
    border-bottom: none;
}

.last-item {
    border-bottom: 1px var(--border-gray) solid !important;
}

.item-content {
    flex: 1 1 0;
}

.item-title {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    word-wrap: break-word;
    display: block;
}

.item-description {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    word-wrap: break-word;
    margin: 0;
    padding-left: 0;
}

.content-right {
    width: 491px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 41px;
    padding: 0;
    margin: 0;
}

.learning-title {
    text-align: center;
    color: var(--black);
    font-size: 27.65px;
    font-weight: 700;
    line-height: 31px;
    word-wrap: break-word;
}

.learning-cards {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 17px;
}

.learning-card {
    align-self: stretch;
    height: 208px;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: var(--background-gray);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.card-icon {
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-content {
    width: 100%;
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.card-title {
    color: var(--black);
    font-size: 19px;
    font-weight: 700;
    line-height: 23px;
    word-wrap: break-word;
    margin: 0;
}

.card-description {
    color: var(--black);
    font-size: 13px;
    font-weight: 400;
    word-wrap: break-word;
    margin: 0;
}

/* Tercera Sección - Estadísticas */
.stats-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 141px;
}

.stats-container {
    width: 100%;
    max-width: 1320px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 141px;
}

.stat-item {
    width: 198px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.stat-item-special {
    width: 251px;
    gap: 4px;
}

.stat-main {
    width: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.stat-icon {
    width: 100px;
    height: 112px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stat-content {
    align-self: stretch;
    text-align: center;
}

.stat-number {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    line-height: 31px;
    word-wrap: break-word;
    display: block;
}

.stat-description {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
    display: block;
}

.stat-badge {
    align-self: stretch;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
}

.badge-star {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.badge-text {
    padding: 10px 10px 10px 0;
    text-align: center;
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    word-wrap: break-word;
}

/* Cuarta Sección - Experto */
.expert-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 74px 60px;
}

.expert-container {
    width: 925px;
    padding: 74px 60px;
    background: var(--background-gray);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.expert-image {
    width: 252px;
    height: 252px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    object-fit: cover;
}

.expert-info {
    text-align: center;
}

.expert-name {
    color: var(--black);
    font-size: 27.65px;
    font-weight: 700;
    line-height: 24px;
    word-wrap: break-word;
}

.expert-title {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
}

.expert-description {
    align-self: stretch;
    height: 161px;
    text-align: center;
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}

.expert-cta-button {
    padding: 12px 24px;
    background: var(--primary-yellow);
    border-radius: 50px;
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    min-width: 220px;
}

.expert-cta-button:hover {
    background: #E6B800;
    transform: translateY(-2px);
}

.expert-cta-button span {
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    word-wrap: break-word;
}


/* Responsive Design */

/* Laptops pequeñas (1280x800) */
@media (max-width: 1280px) and (min-height: 700px) and (min-width: 1025px) {
    .learning-card {
        height: 190px;
    }
    .container {
        padding: 0 60px;
    }
    
    .hero-section {
        width: 100%;
        max-width: 1160px;
        gap: 20px;
        padding: 0 60px;
    }
    
    .left-column {
        width: 55%;
        max-width: 600px;
    }
    
    .right-column {
        width: 45%;
        max-width: 520px;
        height: 300px;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
    }
    
    .title-highlight,
    .title-main {
        font-size: 38px;
    }
    
    .content-wrapper {
        width: 500px;
        gap: 4px;
    }
    
    .date-time-info {
        width: 300px;
    }
    
    .info-item span {
        font-size: 14px;
    }
    
    .benefit-item span {
        font-size: 14px;
    }
    
    .cta-button span {
        font-size: 16px;
    }
    
    .stats-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .stats-container {
        gap: 90px;
        max-width: 1160px;
    }
    
    .stat-item {
        width: 190px;
    }
    
    .stat-item-special {
        width: 235px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-description {
        font-size: 14px;
    }
    
    .badge-text {
        font-size: 14px;
    }
    
    .expert-section {
        padding: 70px 60px;
    }
    
    .expert-container {
        width: 900px;
        padding: 70px 60px;
    }
    
    .expert-image {
        width: 240px;
        height: 240px;
    }
    
    .expert-name {
        font-size: 24px;
    }
    
    .expert-title {
        font-size: 15px;
    }
    
    .expert-description {
        font-size: 14px;
    }
    
    .expert-cta-button span {
        font-size: 16px;
    }
    
    .content-container {
        gap: 60px;
        padding: 0 60px;
        max-width: 1160px;
    }
    
    .content-left {
        width: 470px;
    }
    
    .content-title {
        font-size: 35px;
    }
    
    .item-title {
        font-size: 20px;
    }
    
    .item-description {
        font-size: 14px;
    }
    
    .learning-title {
        font-size: 24px;
    }
    
    .learning-card {
        padding: 50px 30px;
        min-height: 200px;
    }
    
    .card-title {
        font-size: 17px;
    }
    
    .card-description {
        font-size: 12px;
    }
}

/* Resoluciones intermedias (1024px - 1280px) */
@media (max-width: 1280px) and (min-width: 1025px) {
    .container {
        padding: 0 50px;
    }
    
    .hero-section {
        width: 100%;
        max-width: 1180px;
        gap: 25px;
    }
    
    .left-column {
        width: 580px;
    }
    
    .right-column {
        width: 580px;
        height: 360px;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
    }
    
    .title-highlight,
    .title-main {
        font-size: 33px;
        line-height: 30px;
    }
    
    .content-wrapper {
        width: 490px;
    }
    
    .date-time-info {
        width: 290px;
    }
    
    .stats-section {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    
    .stats-container {
        gap: 80px;
        max-width: 1180px;
    }
    
    .stat-item {
        width: 185px;
    }
    
    .stat-item-special {
        width: 225px;
    }
    
    .expert-section {
        padding: 60px 50px;
    }
    
    .expert-container {
        width: 850px;
        padding: 65px 55px;
    }
    
    .expert-image {
        width: 230px;
        height: 230px;
    }
    
    .expert-name {
        font-size: 26px;
        line-height: 30px;
    }
    
    .expert-title {
        font-size: 15px;
        line-height: 22px;
    }
    
    .content-container {
        gap: 55px;
        padding: 0 50px;
        max-width: 1180px;
    }
    
    .content-left {
        width: 724px;
    }
    
    .content-title {
        font-size: 38px;
        line-height: 42px;
    }
    
    .item-title {
        font-size: 22px;
        line-height: 24px;
    }
    
    .item-description {
        font-size: 14.5px;
        line-height: 27px;
    }
    
    .learning-title {
        font-size: 26px;
        line-height: 30px;
    }
    
    .learning-card {
        padding: 45px 25px;
        min-height: 190px;
    }
    
    .card-title {
        font-size: 18.5px;
        line-height: 22px;
    }
    
    .card-description {
        font-size: 15px;
        line-height: 19px;
    }
}

/* Resolución 1024x600 - Netbooks (copia exacta de 1280x800 pero más pequeño) - MAYOR ESPECIFICIDAD */
@media screen and (max-width: 1024px) and (max-height: 600px) {
    .content-section {
        margin-top: 30px;
    }
    .container {
        padding: 0 45px !important;
    }
    
    .hero-section {
        width: 100% !important;
        max-width: 930px !important;
        gap: 22px !important;
        padding: 0 45px !important;
        height: auto !important;
        min-height: 280px !important;
        margin-top: 100px;
       }
    
    .left-column {
        width: 55% !important;
        max-width: 500px !important;
    }
    
    .right-column {
        width: 45% !important;
        max-width: 410px !important;
        height: 280px !important;
    }
    
    .hero-image {
        width: 100% !important;
        height: 100% !important;
    }
    
    .title-highlight,
    .title-main {
        font-size: 32px !important;
        line-height: 20px;
        letter-spacing: -1.8px;
    }
    
    .content-wrapper {
        width: 100% !important;
        max-width: 450px !important;
        gap: 4px !important;
    }
    
    .date-time-info {
        width: 100% !important;
        max-width: 260px !important;
    }
    
    .info-item span {
        font-size: 13px !important;
    }
    
    .benefit-item span {
        font-size: 13px !important;
    }
    
    .cta-button {
        padding: 9px 18px !important;
        min-width: 190px !important;
    }
    
    .cta-button span {
        font-size: 15px !important;
    }
    
    .stats-section {
        padding-top: 90px !important;
        padding-bottom: 90px !important;
    }
    
    .stats-container {
        gap: 70px !important;
        max-width: 930px !important;
    }
    
    .stat-item {
        width: 170px !important;
    }
    
    .stat-item-special {
        width: 210px !important;
    }
    
    .stat-icon {
        width: 75px !important;
        height: 85px !important;
    }
    
    .stat-number {
        font-size: 17px !important;
    }
    
    .stat-description {
        font-size: 13px !important;
    }
    
    .badge-text {
        font-size: 13px !important;
    }
    
    .expert-section {
        padding: 60px 45px !important;
    }
    
    .expert-container {
        width: 100% !important;
        max-width: 800px !important;
        padding: 60px 50px !important;
        gap: 18px !important;
    }
    
    .expert-image {
        width: 220px !important;
        height: 220px !important;
    }
    
    .expert-name {
        font-size: 24px !important;
    }
    
    .expert-title {
        font-size: 14px !important;
    }
    
    .expert-description {
        font-size: 13px !important;
        min-height: 95px !important;
    }
    
    .expert-cta-button {
        padding: 9px 18px !important;
        min-width: 190px !important;
    }
    
    .expert-cta-button span {
        font-size: 15px !important;
    }
    
    .content-container {
        gap: 50px !important;
        padding: 0 45px !important;
        max-width: 930px !important;
    }
    
    .content-left,
    .content-right {
        width: 460px !important;
    }
    
    .content-title {
        font-size: 33px !important;
    }
    
    .item-title {
        font-size: 19px !important;
    }
    
    .item-description {
        font-size: 13px !important;
        line-height: 22px;
    }
    
    .learning-title {
        font-size: 23px !important;
    }
    
    .learning-card {
        padding: 42px 25px !important;
        min-height: 180px !important;
    }
    
    .card-title {
        font-size: 16px !important;
    }
    
    .card-description {
        font-size: 12px !important;
    }
}

/* Tablets (768px - 1024px) - EXCEPTO 1024x600 */
@media (max-width: 1024px) and (not (max-height: 600px)) {
    .container {
        padding: 0 30px;
    }
    
    .hero-section {
        flex-direction: column;
        height: auto;
        gap: 30px;
        width: 100%;
        max-width: 800px;
        align-items: center;
        text-align: center;
    }
    
    .left-column {
        width: 100%;
        max-width: 600px;
        align-items: center;
        text-align: center;
    }
    
    .right-column {
        width: 100%;
        max-width: 600px;
        height: 400px;
        display: flex;
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        max-width: 600px;
        max-height: 400px;
    }
    
    .main-title {
        text-align: center;
    }
    
    .title-highlight,
    .title-main {
        font-size: 38px;
        line-height: 42px;
        text-align: center;
    }
    
    .content-wrapper {
        width: 100%;
        align-items: center;
    }
    
    .date-time-info {
        width: 100%;
        max-width: 400px;
    }
    
    .benefits-list {
        align-items: center;
    }
    
    .benefit-item {
        justify-content: center;
        text-align: center;
    }
    
    .cta-button {
        align-self: center;
    }
    
    .stats-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 60px;
        max-width: 600px;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    .stat-item-special {
        width: 100%;
        max-width: 350px;
    }
    
    .stat-main {
        width: 100%;
    }
    
    .expert-section {
        padding: 50px 30px;
    }
    
    .expert-container {
        width: 100%;
        max-width: 500px;
        padding: 40px;
        text-align: center;
    }
    
    .expert-image {
        width: 200px;
        height: 200px;
    }
    
    .expert-name {
        font-size: 24px;
        line-height: 28px;
    }
    
    .expert-description {
        height: auto;
        min-height: 120px;
    }
    
    .content-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 30px;
        align-items: center;
    }
    
    .content-left,
    .content-right {
        width: 100%;
        max-width: 600px;
        align-items: center;
    }
    
    .content-title {
        text-align: center;
    }
    
    .learning-title {
        text-align: center;
    }
}

/* Tablets pequeñas (600px - 768px) */
@media (max-width: 768px) {
    .header-fixed {
        height: 70px;
    }
    
    .main-content {
        margin-top: 70px;
        gap: 50px;
    }
    
    .hero-container {
        min-height: auto;
        padding: 30px 0;
    }
    
    .hero-section {
        gap: 25px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .left-column {
        align-items: center;
        text-align: center;
    }
    
    .title-highlight,
    .title-main {
        font-size: 32px;
        line-height: 36px;
        text-align: center;
    }
    
    .content-wrapper {
        align-items: center;
        width: 100%;
        max-width: 500px;
    }
    
    .date-time-info {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
        width: 100%;
        max-width: 300px;
    }
    
    .benefits-list {
        align-items: center;
        width: 100%;
    }
    
    .benefit-item {
        justify-content: center;
        text-align: center;
    }
    
    .right-column {
        height: 350px;
        display: flex;
        justify-content: center;
    }
    
    .content-title {
        font-size: 32px;
        line-height: 36px;
        text-align: center;
    }
    
    .learning-title {
        font-size: 24px;
        line-height: 28px;
        text-align: center;
    }
    
    .learning-card {
        padding: 40px 20px;
        min-height: 180px;
    }
    
    .card-title {
        font-size: 18px;
        line-height: 22px;
    }
    
    .card-description {
        font-size: 13px;
    }
    
    .stats-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .stats-container {
        gap: 40px;
        max-width: 400px;
    }
    
    .stat-item {
        max-width: 280px;
    }
    
    .stat-item-special {
        max-width: 320px;
    }
    
    .stat-icon {
        width: 80px;
        height: 90px;
    }
    
    .stat-number {
        font-size: 18px;
        line-height: 28px;
    }
    
    .stat-description {
        font-size: 14px;
        line-height: 18px;
    }
    
    .badge-text {
        font-size: 14px;
        line-height: 18px;
    }
    
    .badge-star {
        width: 14px;
        height: 14px;
    }
}

/* Móviles grandes (480px - 600px) */
@media (max-width: 600px) {
    .main-title {
    padding-top: 30px;
    }
    .container {
        padding: 0 20px;
    }
    
    .header-fixed {
        height: 60px;
    }
    
    .main-content {
        margin-top: 60px;
        gap: 40px;
    }
    
    .logo {
        height: 40px;
    }
    
    .hero-container {
        padding: 20px 0;
    }
    
    .hero-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .left-column {
        align-items: center;
        text-align: center;
    }
    
    .title-highlight,
    .title-main {
        font-size: 28px;
        line-height: 32px;
        text-align: center;
    }
    
    .content-wrapper {
        padding-right: 0;
        align-items: center;
        width: 100%;
        max-width: 450px;
    }
    
    .date-time-info {
        width: 100%;
        padding: 12px;
        max-width: 280px;
    }
    
    .info-item span {
        font-size: 14px;
    }
    
    .benefit-item {
        justify-content: center;
        text-align: center;
    }
    
    .benefit-item span {
        font-size: 14px;
        line-height: 22px;
    }
    
    .cta-button {
        padding: 10px 20px;
        min-width: 200px;
    }
    
    .cta-button span {
        font-size: 16px;
        line-height: 18px;
    }
    
    .right-column {
        height: 300px;
        display: flex;
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        max-width: 400px;
        max-height: 300px;
    }
    
    .content-container {
        gap: 30px;
        padding: 0 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .content-left,
    .content-right {
        width: 100%;
        max-width: 500px;
        align-items: center;
    }
    
    .content-title {
        font-size: 28px;
        line-height: 32px;
        text-align: center;
    }
    
    .item-title {
        font-size: 20px;
        line-height: 22px;
        text-align: center;
    }
    
    .item-description {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
    }
    
    .learning-title {
        font-size: 22px;
        line-height: 26px;
        text-align: center;
    }
    
    .learning-card {
        padding: 30px 15px;
        min-height: 160px;
    }
    
    .stats-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .stats-container {
        gap: 30px;
        max-width: 350px;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        max-width: 250px;
    }
    
    .stat-item-special {
        max-width: 280px;
    }
    
    .stat-icon {
        width: 70px;
        height: 80px;
    }
    
    .stat-number {
        font-size: 16px;
        line-height: 24px;
    }
    
    .stat-description {
        font-size: 13px;
        line-height: 16px;
    }
    
    .badge-text {
        font-size: 13px;
        line-height: 16px;
        padding: 8px 8px 8px 0;
    }
    
    .badge-star {
        width: 12px;
        height: 12px;
    }
    
    .expert-section {
        padding: 30px 20px;
    }
    
    .expert-container {
        width: 100%;
        max-width: 400px;
        padding: 30px;
        gap: 20px;
        text-align: center;
    }
    
    .expert-image {
        width: 150px;
        height: 150px;
    }
    
    .expert-name {
        font-size: 22px;
        line-height: 26px;
    }
    
    .expert-title {
        font-size: 14px;
        line-height: 20px;
    }
    
    .expert-description {
        font-size: 14px;
        line-height: 18px;
        min-height: 100px;
    }
    
    .expert-cta-button {
        padding: 10px 20px;
        min-width: 200px;
    }
    
    .expert-cta-button span {
        font-size: 16px;
        line-height: 18px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-title {
        font-size: 16px;
        line-height: 20px;
    }
    
    .card-description {
        font-size: 12px;
    }
}

/* Móviles pequeños (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-fixed {
        height: 55px;
    }
    
    .main-content {
        margin-top: -20px;
        gap: 30px;
    }
    
    .logo {
        height: 35px;
    }
    
    .hero-container {
        padding: 15px 0;
    }
    
    .hero-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .left-column {
        align-items: center;
        text-align: center;
    }
    
    .title-highlight,
    .title-main {
        font-size: 24px;
        line-height: 28px;
        text-align: center;
    }
    
    .content-wrapper {
        align-items: center;
        width: 100%;
        max-width: 400px;
    }
    
    .date-time-info {
        padding: 10px;
        gap: 10px;
        width: 100%;
        max-width: 260px;
    }
    
    .info-item {
        gap: 6px;
        justify-content: center;
    }
    
    .info-item span {
        font-size: 13px;
    }
    
    .benefit-item {
        gap: 6px;
        justify-content: center;
        text-align: center;
    }
    
    .benefit-item span {
        font-size: 13px;
        line-height: 20px;
    }
    
    .cta-button {
        padding: 10px 20px;
    }
    
    .cta-button span {
        font-size: 13px;
    }
    
    .right-column {
        height: 250px;
        display: flex;
        justify-content: center;
    }
    
    .content-container {
        gap: 25px;
        padding: 0 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .content-left,
    .content-right {
        width: 100%;
        max-width: 400px;
        align-items: center;
    }
    
    .content-title {
        font-size: 24px;
        line-height: 28px;
        text-align: center;
    }
    
    .item-title {
        font-size: 18px;
        line-height: 20px;
        text-align: center;
    }
    
    .item-description {
        font-size: 13px;
        line-height: 20px;
        text-align: center;
    }
    
    .learning-title {
        font-size: 20px;
        line-height: 24px;
        text-align: center;
    }
    
    .learning-card {
        padding: 25px 10px;
        min-height: 140px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .card-title {
        font-size: 15px;
        line-height: 18px;
    }
    
    .card-description {
        font-size: 11px;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
        max-width: 300px;
    }
    
    .expert-container {
        text-align: center;
        max-width: 350px;
    }
}

/* Móviles muy pequeños (menos de 320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .left-column {
        align-items: center;
        text-align: center;
    }
    
    .title-highlight,
    .title-main {
        font-size: 20px;
        line-height: 24px;
        text-align: center;
    }
    
    .content-wrapper {
        align-items: center;
        width: 100%;
        max-width: 300px;
    }
    
    .date-time-info {
        padding: 8px;
        width: 100%;
        max-width: 240px;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .info-item span {
        font-size: 12px;
    }
    
    .benefit-item {
        justify-content: center;
        text-align: center;
    }
    
    .benefit-item span {
        font-size: 12px;
        line-height: 18px;
    }
    
    .cta-button {
        padding: 8px 15px;
    }
    
    .cta-button span {
        font-size: 12px;
    }
    
    .right-column {
        height: 200px;
        display: flex;
        justify-content: center;
    }
    
    .content-container {
        flex-direction: column;
        align-items: center;
    }
    
    .content-left,
    .content-right {
        align-items: center;
        width: 100%;
        max-width: 300px;
    }
    
    .content-title {
        font-size: 20px;
        line-height: 24px;
        text-align: center;
    }
    
    .item-title {
        font-size: 16px;
        line-height: 18px;
        text-align: center;
    }
    
    .item-description {
        font-size: 12px;
        line-height: 18px;
        text-align: center;
    }
    
    .learning-title {
        font-size: 18px;
        line-height: 22px;
        text-align: center;
    }
    
    .learning-card {
        padding: 20px 8px;
        min-height: 120px;
    }
    
    .card-icon {
        width: 35px;
        height: 35px;
    }
    
    .card-title {
        font-size: 14px;
        line-height: 16px;
    }
    
    .card-description {
        font-size: 10px;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
        max-width: 280px;
    }
    
    .expert-container {
        text-align: center;
        max-width: 300px;
    }
}

/* Mejoras adicionales para móviles */
@media (max-width: 768px) {
    .content-item {
        text-align: center;
    }
    
    .item-content {
        text-align: center;
    }
    
    .learning-cards {
        align-items: center;
    }
    
    .learning-card {
        text-align: center;
    }
    
    .card-content {
        text-align: center;
    }
    
    .stat-badge {
        justify-content: center;
    }
    
    .badge-text {
        text-align: center;
    }
}

/* Animaciones y efectos adicionales */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states para accesibilidad */
.cta-button:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Pie de página */
.pie {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.pie span {
    font-size: 0.9rem;
    line-height: 1.6;
}

.pie strong {
    color: var(--primary-blue);
}

/* Utility classes */
.sin_m {
    margin: 0 !important;
}

/* Print styles */
@media print {
    .header-fixed {
        position: static;
        box-shadow: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .cta-button {
        background-color: transparent !important;
        border: 2px solid var(--primary-blue) !important;
        color: var(--primary-blue) !important;
    }
}