* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.hero-section {
    background: linear-gradient(135deg, #6b8cae 0%, #8ba3bb 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    position: relative;
}

.accessibility-btn {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #00a8e8;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.accessibility-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background: #0077b6;
}

.accessibility-icon {
    color: white;
    font-size: 30px;
    font-weight: bold;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content {
    color: white;
    padding: 20px;
}

.content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.decorative-shape {
    position: absolute;
    top: -50px;
    left: -30px;
    width: 300px;
    height: 200px;
    z-index: 0;
}

.decorative-path {
    fill: none;
    stroke: #00a8e8;
    stroke-width: 20;
    stroke-linecap: round;
}

.program-card {
    position: relative;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: block;
    text-decoration: none;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.program-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 30px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.program-overlay.gray {
    background: linear-gradient(to top, rgba(255, 140, 0, 0), rgba(255, 140, 0, 0));
}

.program-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.program-arrow {
    color: white;
    font-size: 2rem;
    font-weight: 300;
}

.help-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,119,182,0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
    display: inline-block;
}

.help-button:hover {
    background: #005f8d;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,119,182,0.5);
}

/* Media Queries para Responsive */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .programs-grid {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .content h1 {
        font-size: 2rem;
    }

    .accessibility-btn {
        width: 50px;
        height: 50px;
    }

    .help-button {
        padding: 15px 28px;
        font-size: 1rem;
    }
}




/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
}

/* Botón de accesibilidad */
.accessibility-btn {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #00a8e8;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.accessibility-btn:hover {
    background: #0077b6;
    transform: translateY(-50%) scale(1.1);
}

.accessibility-icon {
    color: white;
    font-size: 30px;
}

/* Sección de contacto principal */
.contact-section {
    display: grid;
    grid-template-columns: 2fr 3fr;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
}

/* Grid de opciones de contacto */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #ff8c00;
}

/* Opciones individuales de contacto */
.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 0;
}

.contact-option:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.contact-option:hover {
    transform: scale(1.02);
}

/* Colores específicos para cada opción */
.contact-option:nth-child(1) {
    background: #ff8c00;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-option:nth-child(2) {
    background: #ffa31a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-option:nth-child(3) {
    background: #ff9500;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-option:nth-child(4) {
    background: #ffab33;
}

/* Íconos */
.icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
    fill: white;
    stroke: white;
}

/* Textos de las opciones */
.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.contact-subtitle {
    font-size: 1rem;
    margin-top: 5px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Panel de información lateral */
.info-panel {
    background: white;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-panel h2 {
    font-size: 3rem;
    color: #004680;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.info-panel p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Botón de llamada a la acción */
.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: #ff8c00;
    border: 2px solid #ff8c00;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    align-self: flex-start;
}

.cta-button:hover {
    background: #ff8c00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

/* Botón de ayuda flotante */
.help-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0077b6;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
    display: inline-block;
}

.help-button:hover {
    background: #005f8d;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.5);
}

/* Media Queries para tablets */
@media (max-width: 1024px) {
    .contact-section {
        grid-template-columns: 1fr;
    }

    .info-panel {
        padding: 60px 40px;
    }

    .info-panel h2 {
        font-size: 2.5rem;
    }
}

/* Media Queries para móviles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-option {
        padding: 50px 30px;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .contact-option:last-child {
        border-bottom: none;
    }

    .info-panel {
        padding: 40px 30px;
    }

    .info-panel h2 {
        font-size: 2rem;
    }

    .info-panel p {
        font-size: 1rem;
    }

    .accessibility-btn {
        width: 50px;
        height: 50px;
    }

    .accessibility-icon {
        font-size: 24px;
    }

    .help-button {
        padding: 15px 28px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Media Queries para pantallas muy pequeñas */
@media (max-width: 480px) {
    .contact-option {
        padding: 40px 20px;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .contact-title {
        font-size: 1.2rem;
    }

    .contact-subtitle {
        font-size: 0.9rem;
    }

    .info-panel h2 {
        font-size: 1.5rem;
    }

    .info-panel p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
}