*{
    margin: 0;
    padding: 0;
}

html{
    width: 100%;
    height: 100%;
}

body{
    width: 100%;
    height: 100%;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-weight: 400;
}

/* Estilos globales de fuente */
h1, h2, h3, h4, h5, h6, p, li, span, a, div {
    font-weight: 400;
    font-family: 'Arial Narrow', Arial, sans-serif;
}

h1 {
    font-size: 27px;
    color: #585858; /* Gris suave */
}

h2 {
    font-size: 20px;
    color: #1b1b1b; /* Gris fuerte */
}

p {
    font-size: 16px;
    color: #585858;
}

h3 {
    font-size: 18px;
    color: #1b1b1b; /* Gris fuerte */
}

li {
    font-size: 16px;
    color: #585858;
}

/* Breakpoint de 500px */
@media screen and (min-width: 500px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    p {
        font-size: 18px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    li {
        font-size: 18px;
    }
}

/* Breakpoint de 900px */
@media screen and (min-width: 900px) {
    h1 {
        font-size: 60px;
    }
    
    h2 {
        font-size: 40px;
    }
    
    p {
        font-size: 24px;
    }
    
    h3 {
        font-size: 30px;
    }
    
    li {
        font-size: 24px;
    }
}

:root {
    /* Primary/Accent Colors */
    --color-primary-red: #ea2173;
    --color-primary-green: #0dd3ad;
    --color-primary-yellow: #ffc217;
    --color-primary-blue: #007bff;

    /* Neutral/Text Colors */
    --color-text-dark: #585858;
    --color-text-darker: #1b1b1b;
    --color-neutral-light-grey: #b2b2b2;
    --color-white: #ffffff;
    --color-black: #000000;

    /* Overlays/Specific Backgrounds */
    --color-overlay-dark: rgba(0, 0, 0, 0.5);
    --color-map-fill-red: #be1156;
    --color-tooltip-bg: #161616;
    --color-taller-bg: #000b2e;

    /* Social Media Colors */
    --color-social-facebook: #3b5998;
    --color-social-instagram: #c32aa3;
}

#video_presentacion{
    width: 100%;
    height: 100%;
}

main{
    height: 90%;
    overflow-y: scroll;
    overflow-x: hidden;
}


@media screen and (max-width: 800px) {
      main {
        height: 90%;
        width: 100%;
    }
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.splash-close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--color-text-darker);
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    line-height: 1;
}

.splash-close-btn:hover {
    opacity: 1;
    color: var(--color-primary-red);
    transform: scale(1.1);
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    max-width: 90%;
}

.splash-content img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    margin-bottom: 30px;
}

.splash-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.splash-btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.splash-btn.preinscripcion {
    background-color: var(--color-primary-red);
    color: var(--color-white);
    border: 2px solid var(--color-primary-red);
}

.splash-btn.preinscripcion:hover {
    background-color: var(--color-white);
    color: var(--color-primary-red);
    transform: translateY(-2px);
}

.splash-btn.informacion {
    background-color: var(--color-primary-green);
    color: var(--color-white);
    border: 2px solid var(--color-primary-green);
}

.splash-btn.informacion:hover {
    background-color: var(--color-white);
    color: var(--color-primary-green);
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .splash-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .splash-btn {
        padding: 12px 25px;
        min-width: 180px;
    }
    
    .splash-content img {
        margin-bottom: 20px;
    }
}


