/**
 * HOME.CSS - Estilos para template-home.php
 * Ortega y Gasset - Academist Child Theme
 * Version: 1.3.2
 */

/* ========================================
   HERO SECTION
   ======================================== */

.og-home-hero {
    position: relative;
    min-height: 80vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('../assets/images/Home_3.webp');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    padding-left: 100px;
}

.og-home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Overlay más oscuro para mejor legibilidad */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 40%, transparent 70%);
}

.og-home-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #ffffff !important;
    max-width: 700px;
    padding: 60px 0;
    margin-left: 40px;
}

/* Logo del búho - MÁS GRANDE */
.og-hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: absolute;
    right: 8%;
    top: 1%;
}

.og-home-hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff !important;
    font-family: 'Lexend', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.og-home-hero-content p {
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 400;
    color: #ffffff !important;
    font-family: 'Lexend', sans-serif;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

/* ========================================
   SECCIÓN INSTITUCIÓN
   ======================================== */

.og-home-institution {
    padding: 0;
    background: #ffffff;
}

.og-home-institution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 0;
    min-height: 500px;
}

.og-home-institution-text {
    background: #0593f3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

/* Carrusel container */
.og-home-institution-carousel {
    max-width: 600px;
    position: relative;
    width: 100%;
}

/* Slides */
.og-home-institution-carousel .og-carousel-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.og-home-institution-carousel .og-carousel-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.og-home-institution-text-inner {
    max-width: 600px;
}

.og-home-institution-text h2 {
    font-size: 48px; /* Texto más grande */
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
}

.og-home-institution-text p {
    font-size: 18px; /* Texto más grande */
    line-height: 1.8;
    color: #ffffff !important;
}

/* Indicadores del carrusel */
.og-carousel-indicators {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    justify-content: flex-start;
}

.og-indicator {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.og-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.og-indicator.active {
    background: #ffffff;
    width: 16px;
    height: 16px;
}

.og-home-institution-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.og-home-institution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sección de logos separada */
.og-home-logos {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

.og-home-logos .og-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.og-logos-slider {
    position: relative;
    overflow: hidden;
}

.og-logos-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform; /* Optimización GPU para mejor rendimiento */
}

.og-logos-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 20px 0;
}

.og-logos-slide img {
    height: 200px; /* TAMAÑO LOGOS DESKTOP - Ajusta este valor para hacer más grandes o pequeños */
    width: auto;
    max-width: 220px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.og-logos-slide img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Botones de navegación */
.og-logos-prev,
.og-logos-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 61, 113, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.og-logos-prev:hover,
.og-logos-next:hover {
    background: rgba(0, 61, 113, 1);
}

.og-logos-prev {
    left: 10px;
}

.og-logos-next {
    right: 10px;
}

/* Indicadores */
.og-logos-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.og-logo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.og-logo-dot.active {
    background: #003d71;
}

.og-logo-dot:hover {
    background: #0593f3;
}

/* ========================================
   PROGRAMAS
   ======================================== */

.og-home-programs {
    padding: 80px 0;
    background: #003d71;
}

.og-home-programs h2 {
    text-align: center;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 50px;
    font-weight: 700;
}

.og-home-programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.og-program-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.og-program-card:hover {
    border-color: #0593f3;
    box-shadow: 0 8px 24px rgba(5, 147, 243, 0.15);
    transform: translateY(-5px);
}

.og-program-card h3 {
    font-size: 22px;
    color: #003b72;
    margin-bottom: 16px;
    font-weight: 700;
}

.og-program-card p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.og-program-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: center;
    width: 100%;
}

.og-program-card ul li {
    font-size: 13px;
    color: #333333;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.og-program-card ul li:last-child {
    border-bottom: none;
}

.og-btn-card {
    display: inline-block;
    padding: 12px 30px;
    background: #0593f3;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.og-btn-card:hover {
    background: #003b72;
}

/* ========================================
   ESTADÍSTICAS
   ======================================== */

.og-home-stats {
    position: relative;
    padding: 80px 0;
    background-image: url('../assets/images/Quienes_somos.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.og-home-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 59, 114, 0.60) 0%, rgba(5, 147, 243, 0.60) 100%); /* Menos opacidad para ver más el fondo */
    z-index: 1;
}

.og-home-stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.og-stat-circle {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.og-stat-number {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff; /* Círculo blanco sólido */
    border: none;
    border-radius: 50%;
    font-size: 36px;
    font-weight: 700;
    color: #0593f3; /* Números en azul */
}

.og-stat-circle p {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff !important;
}

/* ========================================
   TESTIMONIOS
   ======================================== */

/* ========================================
   TESTIMONIOS - SLIDER
   ======================================== */

.og-home-testimonials {
    padding: 80px 0;
    background: #0593f3;
    position: relative;
    overflow: hidden;
}

.og-home-testimonials .og-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.og-testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.og-testimonials-slider {
    overflow: hidden;
    width: 100%;
    flex: 1;
}

.og-testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.og-testimonials-slide {
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
}

.og-home-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.og-testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 380px;
}

.og-testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.og-testimonial-card p {
    font-size: 15px;
    color: #333333;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.og-testimonial-card h4 {
    font-size: 18px;
    color: #003b72;
    margin-bottom: 6px;
    font-weight: 700;
}

.og-testimonial-card span {
    font-size: 13px;
    color: #666666;
}

/* Flechas de navegación */
.og-testimonial-arrow {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.og-testimonial-arrow:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.og-testimonial-arrow svg {
    color: #0593f3;
}

.og-testimonial-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.og-testimonial-arrow:disabled:hover {
    transform: none;
}

/* Indicadores (dots) */
.og-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.og-testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.og-testimonial-dot:hover {
    transform: scale(1.2);
}

.og-testimonial-dot.active {
    background: #ffffff;
}

/* ========================================
   LO ÚLTIMO (BLOG)
   ======================================== */

.og-home-blog {
    padding: 80px 0;
    background: #f8f9fa;
}

.og-home-blog h2 {
    text-align: center;
    font-size: 36px;
    color: #003b72;
    margin-bottom: 50px;
    font-weight: 700;
}

.og-home-blog-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.og-blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.og-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.og-blog-card-image {
    width: 350px;
    min-width: 350px;
    height: auto;
    overflow: hidden;
    flex-shrink: 0;
}

.og-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.og-blog-card:hover .og-blog-card-image img {
    transform: scale(1.05);
}

.og-blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.og-blog-card-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.og-blog-card-content h3 a {
    color: #003b72;
    text-decoration: none;
    font-weight: 700;
}

.og-blog-card-content h3 a:hover {
    color: #0593f3;
}

.og-blog-card-category {
    font-size: 12px;
    color: #0593f3;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.og-blog-card-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.og-home-blog-cta {
    text-align: center;
}

.og-btn-secondary {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: #0593f3;
    border: 2px solid #0593f3;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.og-btn-secondary:hover {
    background: #0593f3;
    color: #ffffff;
}

/* ========================================
   CTA FINAL
   ======================================== */

.og-home-cta-final {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/cta-final.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.og-home-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 59, 114, 0.85);
}

.og-home-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.og-home-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.og-btn-primary-large {
    display: inline-block;
    padding: 18px 50px;
    background: #0593f3;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(5, 147, 243, 0.4);
}

.og-btn-primary-large:hover {
    background: #0079d7;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 147, 243, 0.6);
}

/* ========================================
   SECCIÓN MOTIVACIONAL
   ======================================== */

.og-home-motivational {
    position: relative;
    background-image: url('../assets/images/Cursos_especialización.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    min-height: 350px;
    text-align: center;
}

.og-home-motivational::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 59, 114, 0.85);
    z-index: 1;
}

.og-home-motivational .og-container {
    position: relative;
    z-index: 2;
}

.og-home-motivational h2 {
    font-size: 32px;
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.og-home-motivational p {
    font-size: 18px;
    color: #ffffff !important;
    font-weight: 400;
    margin: 0;
}

/* ========================================
   REDES SOCIALES
   ======================================== */

.og-home-social {
    background: #0593f3; /* Fondo azul como en Figma */
    padding: 50px 0;
    text-align: center;
}

.og-home-social h3 {
    font-size: 24px;
    color: #ffffff; /* Texto blanco */
    font-weight: 600;
    margin-bottom: 30px;
}

.og-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.og-social-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff; /* Iconos con fondo blanco */
    color: #0593f3; /* Iconos en azul */
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.og-social-icons a:hover {
    background: #003b72;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

/* ========================================
   VIDEO ASPIRACIONAL
   ======================================== */

.og-home-video {
    background: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.og-home-video h2 {
    font-size: 32px;
    color: #003b72;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.og-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
}

.og-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #000000;
    outline: none;
}

.og-video-player:focus {
    outline: 3px solid #0593f3;
    outline-offset: 4px;
}

/* ========================================
   LOGO FOOTER
   ======================================== */

.og-home-footer-logo {
    background: #ffffff;
    padding: 60px 0 80px;
    text-align: center;
}

.og-home-footer-logo img {
    width: 140px;
    height: auto;
    opacity: 1; /* Sin difuminación - color azul original */
    filter: none; /* Sin filtros */
}

/* ========================================
   RESPONSIVE - HOME
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .og-home-hero-content h1 {
        font-size: 38px;
    }

    .og-home-programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .og-home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .og-home-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .og-home-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet y Móvil grande */
@media (max-width: 768px) {
    .og-home-hero {
        min-height: 500px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .og-home-hero-content {
        margin-left: 0;
        padding: 40px 0;
    }

    .og-home-hero-content h1 {
        font-size: 36px;
    }

    .og-home-hero-content p {
        font-size: 17px;
    }

    .og-home-institution-grid {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .og-home-institution-text {
        padding: 50px 30px;
    }

    .og-home-institution-text h2 {
        font-size: 30px;
    }

    .og-home-institution-image {
        min-height: 350px;
    }
    
    .og-home-programs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .og-home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Testimonios slider tablet - 2 columnas */
    .og-home-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .og-testimonial-arrow {
        width: 45px;
        height: 45px;
    }

    .og-testimonial-card p {
        min-height: 100px;
        font-size: 14px;
    }

    .og-home-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .og-logos-slide {
        gap: 40px;
    }
    
    .og-logos-slide img {
        height: 140px;
        max-width: 180px;
    }
}

/* Móvil */
@media (max-width: 640px) {
    .og-home-hero {
        min-height: 450px;
    }

    .og-home-hero-content h1 {
        font-size: 32px;
    }

    .og-home-hero-content p {
        font-size: 18px;
    }
    
    .og-hero-logo {
        width: 90px;
        margin-bottom: 20px;
        right: 6%;
        top: 3%;
    }

    .og-home-institution {
        padding: 0;
    }

    .og-home-institution-text {
        padding: 40px 20px;
    }

    .og-home-institution-text h2 {
        font-size: 26px;
    }

    .og-home-institution-image {
        min-height: 300px;
    }

    .og-home-logos {
        padding: 50px 0;
    }

    .og-logos-slide {
        gap: 30px;
        flex-wrap: nowrap;
        padding: 30px 10px;
        justify-content: space-evenly;
    }

    .og-logos-slide img {
        height: 100px;
        max-width: 28%;
        flex-shrink: 0;
    }
    
    /* Ocultar logos extras en móvil para mostrar solo 3 por slide */
    .og-logos-slide img:nth-child(n+4) {
        display: none;
    }

    .og-logos-prev,
    .og-logos-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .og-logos-prev {
        left: 5px;
    }

    .og-logos-next {
        right: 5px;
    }

    .og-logos-dots {
        margin-top: 20px;
    }

    .og-logo-dot {
        width: 10px;
        height: 10px;
    }

    .og-home-programs {
        padding: 50px 0;
    }

    .og-home-programs h2 {
        font-size: 28px;
    }

    .og-home-programs-grid {
        grid-template-columns: 1fr;
    }

    .og-home-stats {
        padding: 50px 0;
    }

    .og-home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .og-stat-number {
        width: 120px;
        height: 120px;
        font-size: 28px;
    }

    .og-stat-circle p {
        font-size: 14px;
    }

    /* Testimonios responsive */
    .og-home-testimonials {
        padding: 50px 0;
    }

    .og-testimonials-slider-wrapper {
        gap: 10px;
    }

    .og-testimonial-arrow {
        display: none; /* Ocultar flechas en móvil */
    }

    .og-home-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .og-testimonial-card p {
        min-height: auto;
        font-size: 14px;
    }

    .og-home-blog {
        padding: 50px 0;
    }

    .og-home-blog h2 {
        font-size: 28px;
    }

    .og-home-blog-grid {
        gap: 20px;
    }

    .og-blog-card {
        flex-direction: column;
    }

    .og-blog-card-image {
        width: 100%;
        min-width: 100%;
        height: 220px;
    }

    .og-blog-card-content {
        padding: 20px;
    }

    .og-home-cta-final {
        min-height: 350px;
    }

    .og-home-cta-content h2 {
        font-size: 32px;
    }

    .og-btn-primary-large {
        font-size: 18px;
        padding: 16px 40px;
    }
    /* Logo búho responsive */
    .og-hero-logo {
        width: 80px;
        right: 5%;
        top: 2%;
    }

    /* Sección motivacional responsive */
    .og-home-motivational {
        padding: 60px 0;
        min-height: 300px;
    }

    .og-home-motivational h2 {
        font-size: 24px;
        padding: 0 20px;
    }

    .og-home-motivational p {
        font-size: 16px;
        padding: 0 20px;
    }

    /* Redes sociales responsive */
    .og-home-social {
        padding: 35px 0;
    }

    .og-home-social h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .og-social-icons {
        gap: 12px; /* Menos espacio entre iconos */
        flex-wrap: nowrap; /* Forzar que estén en una línea */
        overflow-x: auto; /* Por si acaso, scroll horizontal suave */
        -webkit-overflow-scrolling: touch;
        padding: 0 10px;
    }

    .og-social-icons a {
        width: 40px; /* Iconos más pequeños */
        height: 40px;
        flex-shrink: 0; /* No permitir que se encojan */
    }

    .og-social-icons a svg {
        width: 20px; /* SVG más pequeños */
        height: 20px;
    }

    /* Video aspiracional responsive */
    .og-home-video {
        padding: 50px 0;
    }

    .og-home-video h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .og-video-wrapper {
        padding: 0 10px;
        padding-bottom: 56.25%; /* Mantener aspect ratio 16:9 en móvil */
    }

    .og-video-player {
        border-radius: 8px; /* Menos border radius en móvil */
    }

    /* Carrusel responsive */
    .og-home-institution-text h2 {
        font-size: 28px;
    }

    .og-home-institution-text p {
        font-size: 16px;
    }

    .og-carousel-indicators {
        justify-content: center;
        margin-top: 25px;
    }

    /* Logo footer responsive */
    .og-home-footer-logo {
        padding: 50px 0 60px;
    }
    
    .og-home-footer-logo img {
        width: 90px;
    }
}
