/*ajustes globales*/
* {
    box-sizing: border-box;
}

html{
    font-size: 16px;
    overflow-x: clip;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: "Inter", Sans-Serif;
    font-weight: 700;
    background-color: #EEEEEE;
    font-size: 1rem;
    overflow-x: clip;
    max-width: 100%;
}

a{
    text-decoration: none;
    color: black;
    -webkit-tap-highlight-color: transparent;
}

section{
    scroll-margin-top: 130px;
}


/*alerta*/
#alerta{
    text-align: center;
    width: 1000px;
    overflow: hidden;
    white-space: nowrap;
}

#alerta p{
    display: inline-block;
}
#alerta mark{
    background-color: #FD4001;
}


/*barra de navegacion*/
#navBar {
    background-color: black;
    width: 100%;
    height: 100px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 15px 100px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
#navBar img{
    height: 50px;
    width: 50px;
    justify-self: start;
}
#navBar ul {
    list-style: none;
    padding: 3px 3px;
}

#navBar li {
    border-radius: 20px;
    border: 1px solid white;
    padding: 10px 15px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#navBar li:hover{
    border: 1px solid #E2FF9E;
    background-color: rgb(220, 220, 220);
}

#navBar a li.activo {
    background-color: black;
    border: 1px solid #E2FF9E;
    color: white; 
}

#navBar a {
    color: black;
    text-decoration: none;
}

#btn_container {
    justify-self:center;
    display:flex;
    gap:10px;
    border: 1px solid white;
    border-radius: 22px;
}

#btn_hamburguesa {
    display: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

#btn_inscripcion_container {
    justify-self: end;
}

#btn_inscripcion_container li {
    background-color: #B2EA03;
    border: 1px solid #B2EA03;
}

#btn_inscripcion_container li:hover {
    background-color: #9ccf03;
}

#btn_inscripcion_container a {
    color: black;
}


/*seccion hero*/
#hero_banner{
    width: 100%;
    height: auto ;
}
#header_inicio{
    background-color: #FFFFFF;
    width: 70%;
    margin: 40px auto 20px;
    text-align: center;
    border-radius: 20px;
    padding: 3px;

}
#header_inicio h3{
    color: #FD4001;
    font-size: 2.5rem;
    margin: 0px;
    padding: 3px;
}

#dash_inicio{
    width: 70%;
    margin: 0px auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.card_inicio{
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card_inicio:hover{
    transform: translateY(-5px); 
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.card_inicio img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.card_body_inicio{
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.card_body_inicio h4{
    color: #FD4001;
    font-size: 1.5rem;
    margin: 0;
}

.card_body_inicio hr{
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 12px 0 16px 0;
    width: 100%;
}

.dash_card_inicio p{
    margin: 0px;
    font-weight: 400;
    font-size: 1rem;
}

#waze{
    width: 95%;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid black;
    text-align: center;
    padding: 7px;
}

#waze p, #waze a{
    text-decoration: none;
    color: black;
    margin: 0;
    white-space: pre-wrap;
    text-align: center;
    width: 100%;
}

#waze:hover {
    border: 1px solid #FD4001;
}

#waze:hover p{
    color: #FD4001;
}


/*fichas de informacion importante*/
.dash_card_pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 16px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 500;
}

.dash_card_pill_badge {
    background-color: #eeeeee;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 12px;
}

.dash_card_price {
    font-weight: 900;
    background-color: #eeeeee;
    padding: 3px 8px;
    border-radius: 6px;
}

.dash_card_price_sub {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}

.dash_card_inicio_text {
    text-align: left;
    font-size: 0.85rem;
    line-height: 1.3;
}

.dash_card_inicio_text p {
    margin-bottom: 10px;
}


/*formato del campeonato*/

.title_hr{
    width: 70%;
    margin: 40px auto 40px;
}

#formato_title{
    border-radius: 20px;
    background-color: #FD4001;
    text-align: center;
    width: 70%;
    margin: 50px auto 20px;
    padding: 3px;
}

#formato_title h3 {color: white; margin: 0; font-size: 2.5rem}

#formato_content{
    width: 70%;
    margin: 20px auto;
    font-size: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#formato_content div{
    background-color: #ffffff;
    border-radius: 10px;
    padding: 10px;
    line-height: 1.3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#formato_content div:hover{
    transform: translateY(-5px); 
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

#formato_content ul{
    list-style-image: url(/src/circle-arrow-right.png);
}

#formato_content li{
    margin: 10px;
    font-weight: 400;
}


/*fechas y horarios*/
#fecha_title{
    border-radius: 20px;
    background-color: #ffffff;
    text-align: center;
    width: 70%;
    margin: 60px auto 20px;
    padding: 3px;
}

#fecha_title h3 {color: #FD4001; margin: 0; font-size: 2.5rem}

#fecha_content{
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    width: 70%;
    margin: 0 auto;
    padding: 0px 0;
    align-items: stretch; 
}

#fecha_content img{
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 20px;
}

#cronograma_container {
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;           
    box-sizing: border-box; 
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#cronograma_container:hover{
    transform: translateY(-5px); 
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.cronograma_fila {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
}

.cronograma_pill {
    flex: 1; 
    text-align: center;
    padding: 12px 10px;
    border-radius: 12px;
}

.cronograma_pill p {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
}

.pill_gris {
    background-color: #EEEEEE;
}

.pill_verde {
    background-color: #E2FF9E;
}

.cronograma_divider {
    border: none;
    border-top: 1px solid #E0E0E0;
    margin: 20px 0;
}

.cronograma_nota {
    margin-top: 25px;
    font-size: 0.9rem;
    font-weight: 400;
    color: #333333;
    line-height: 1.4;
    text-align: left;
}


/*contactanos*/
#contacto_title{
    border-radius: 20px;
    background-color: #E2FF9E;
    text-align: center;
    width: 70%;
    margin: 60px auto 20px;
    padding: 3px;
}

#contacto_title h3 {color: #000000; margin: 0; font-size: 2.5rem}


/*dash redes sociales*/
#dash_contacto{
    width: 70%;
    height: auto;
    margin: 0px auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
}

.card_contacto{
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden; 
    display: flex;
    text-align: center;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card_contacto:hover{
    transform: translateY(-5px); 
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.card_contacto img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card_body_contacto h4{
    color: #FD4001;
    font-size: 1.5rem;
    margin: 0;
    display: inline-block;
}

.card_body_contacto{
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: stretch;
}


.card_body_contacto hr{
    border: none;
    border-top: 1px solid #e0e0e0;
    width: 100%;
    margin: 12px 0 16px 0;
}

.dash_card_contacto{
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.dash_card_contacto a{
    margin: 0px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    color: inherit;
    text-decoration: none;
}

.dash_card_contacto p{
    margin: 0;
}

.dash_card_pill_contacto{
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 2px 4px;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.dash_card_pill_contacto:hover{
    border: 1px solid #FD4001;
}

.dash_card_pill_contacto:hover a{
    color: #FD4001;
}

.dash_card_pill_contacto img{
    height: 20px;
    width: 20px;
    margin: auto;
}


/*reglamento del torneo*/
#reglamento_title{
    border-radius: 20px;
    background-color: #ffffff;
    text-align: center;
    width: 70%;
    margin: 60px auto 20px;
    padding: 3px;
}

#reglamento_title h3 {color: #FD4001; margin: 0; font-size: 2.5rem}

#reglamento_content{
    width: 70%;
    background-color: #afafaf59;
    height: 150px;
    margin: auto;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

#reglamento_content p{
    margin: auto;
    font-size: 1rem;
}

#btn_reglamento{
    width: 33%;
    margin: auto;
    padding: 12px 24px;
    background-color: #FD4001;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
}

#btn_reglamento:hover{
    background-color: #fd40017e;
}


/*seccion nosotros*/
#nosotros_banner{
    width: 100%;
    height: auto;
    margin: 60px 0 20px;
}

#dash_nosotros{
    width: 70%;
    height: 450px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.card_nosotros{
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden; 
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card_nosotros:hover{
    transform: translateY(-5px); 
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.card_nosotros img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.card_nosotros h4{
    color: #FD4001;
    font-size: 1.5rem;
    margin: 20px 20px 10px;
    width: 90%;
    text-align: center;
    min-height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card_nosotros hr{
    border: none;
    border-top: 1px solid #e0e0e0;
    width: 90%;
}

.card_nosotros p{
    font-weight: 400;
    margin: 20px;
    font-size: 1rem;
}

.card_nosotros ul{
    list-style-image: url(/src/circle-arrow-right.png);
    padding-left: 0px;
    list-style-position: inside; 
    margin: 20px;
    font-size: 1rem;
}

.card_nosotros li{
    font-weight: 400;
}

#versiculo_container{
    margin: 20px;
    border-radius: 10px;
    background-color: #EEEEEE;
}

#versiculo_container p{
    margin: 7.5px;
}


/*mision y vision*/
#dash_mision_vision{
    width: 70%;
    height: auto;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

#mision, #vision{
    border-radius: 10px;
    overflow: hidden; 
    flex-direction: column;
    display: flex;
    align-items: center;
    text-align: left;
}

#dash_mision_vision img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

#mision{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#mision_title{
    width: 100%;
    padding: 5px;
    background-color: #FD4001;
    border-radius: 20px;
    text-align: center;
}
#mision_title h4{
    color: #ffffff;
    font-size: 1.75rem;
    margin: 0;
}

#mision_content{
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#mision_content:hover{
    transform: translateY(-5px); 
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}


#mision_content p{
    font-weight: 400;
    font-size: 1rem;
    margin: 0;
}

#vision{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#vision_title{
    width: 100%;
    padding: 5px;
    background-color: #FD4001;
    border-radius: 20px;
    text-align: center;
}
#vision_title h4{
    color: #ffffff;
    font-size: 1.75rem;
    margin: 0;
}

#vision_content{
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#vision_content:hover{
    transform: translateY(-5px); 
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}


#vision_content p{
    font-weight: 400;
    font-size: 1rem;
    margin: 0;
}


/*objetivo general*/
#dash_objetivos{
    width: 70%;
    height: auto;
    margin: 20px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#objetivo_general{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#objetivo_general_title{
    width: 100%;
    padding: 5px;
    background-color: #B2EA03;
    border-radius: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#objetivo_general_title h4{
    color: #000000;
    font-size: 1.75rem;
    margin: 0;
}

#objetivo_general_content{
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#objetivo_general_content:hover{
    transform: translateY(-5px); 
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}


#objetivo_general_content p{
    font-weight: 400;
    font-size: 1rem;
    margin: 20px;
}


/*objetivos especificos*/
#objetivo_especifico{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#objetivo_especifico_title{
    width: 100%;
    padding: 5px;
    background-color: #B2EA03;
    border-radius: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#objetivo_especifico_title h4{
    color: #000000;
    font-size: 1.75rem;
    margin: 0;
}

#objetivo_especifico_content{
    background-color: #ffffff;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#objetivo_especifico_content:hover{
    transform: translateY(-5px); 
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

#objetivo_especifico_content ul{
    list-style-image: url(/src/circle-arrow-right.png);
    font-weight: 400;
    font-size: 1rem;
    margin: 20px;
    list-style-position: inside; 
    padding-left: 0;
}

#objetivo_especifico_content li{
    margin: 4px;
}


/*campeones*/
#campeones_banner{
    width: 70%;
    display: flex;
    height: auto;
    margin: 60px auto 20px;
    border-radius: 10px;
}

#galeria_campeones{
    width: 70%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.imagen{
    flex: 0 0 calc((100% - 40px) / 3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.imagen:hover{
    transform: translateY(-5px); 
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.imagen img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/*nota de cierre*/

#nota_title{
    border-radius: 20px;
    background-color: #ffffff;
    text-align: center;
    width: 70%;
    margin: 60px auto 20px;
    padding: 3px;
}

#nota_title h3 {color: #FD4001; margin: 0; font-size: 2.5rem}

#dash_nota{
    width: 70%;
    height: auto;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.card_nota{
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card_nota:hover{
    transform: translateY(-5px); 
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.card_nota p{
    margin: 0px;
    font-weight: 400;
    font-size: 1rem;

}

#card_nota_3{
    border-radius: 10px;
    background-color: #EEEEEE;
    padding: 7.5px;
}


/*footer*/
#footer{
    background-color: #CACBCD;
    margin-top: 40px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
#footer p{
    text-align: center;
}


/*boton de redes de la copa*/
.instagram-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.instagram-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.facebook-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #1877F2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.facebook-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}


/*seccion responsive*/
@media (max-width: 1024px) {

    #dash_inicio {
        grid-template-columns: 1fr 1fr;
    }

    #dash_nosotros,
    #dash_mision_vision {
        grid-template-columns: 1fr 1fr;
    }

    #dash_nosotros {
        height: auto;
    }

    #dash_contacto,
    #dash_nota {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .card_contacto,
    .card_nota {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .imagen {
        flex: 0 0 calc((100% - 20px) / 2);
    }
    .title_hr{
        width: 90%;
    }
}

@media (max-width: 768px) {

    .foto_placeholder {
        display: none;
    }
    
    #alerta {
        width: 100%;
        padding: 0 10px;
    }

    #navBar {
        grid-template-columns: auto auto 1fr;
        padding: 10px 20px;
    }

    section{
    scroll-margin-top: 110px;
    }

    #btn_hamburguesa {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 35px;
        height: 35px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        justify-self: start;
        margin-left: 15px;
        z-index: 2000;
    }

    #btn_hamburguesa.activo {
        position: fixed;
        top: 32px;
        left: 80px;
        margin-left: 0;
    }

    #btn_hamburguesa span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: white;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    }

    #btn_hamburguesa.activo span {
        background-color: rgb(255, 255, 255);
    }

    #btn_hamburguesa.activo span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #btn_hamburguesa.activo span:nth-child(2) {
        opacity: 0;
    }

    #btn_hamburguesa.activo span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    #btn_container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        background-color: #000000;
        border: none;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 1500;
    }

    #btn_container.activo {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #btn_container a {
        width: 80%;
        max-width: 300px;
    }

    #btn_container li {
        width: 100%;
        text-align: center;
        font-size: 1.5rem;
        padding: 16px 15px;
    }

    #btn_inscripcion_container {
        justify-self: end;
    }

    #btn_inscripcion_container li {
        padding: 12px 18px;
    }

    /*seccion inicio*/
    #header_inicio,
    #formato_title,
    #fecha_title,
    #contacto_title,
    #reglamento_title,
    #nota_title{
        width: 90%;
        margin: 40px auto 20px;
    }

    .title_hr{
        margin: 20px auto 20px;
    }

    #header_inicio h3,
    #formato_title h3,
    #fecha_title h3,
    #contacto_title h3,
    #reglamento_title h3,
    #nota_title h3 {
        font-size: 2rem;
    }

    #dash_inicio {
        width: 90%;
        grid-template-columns: 1fr 1fr;
    }

    /*formato del campeonato*/
    #formato_content {
        width: 90%;
        grid-template-columns: 1fr;
    }

    /*fechas y horarios*/
    #fecha_content {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cronograma_fila {
        flex-direction: column;
        gap: 8px;
    }

    .cronograma_pill {
        width: 100%;
    }

    /*contactanos*/
    #dash_contacto {
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .card_contacto {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    /*reglamento*/
    #reglamento_content {
        width: 90%;
        height: auto;
        min-height: 150px;
        padding: 20px 15px;
    }

    #reglamento_content p {
        font-size: 1rem;
        padding: 0 10px;
    }

    #btn_reglamento {
        width: 70%;
    }

    /*nosotros*/
    #nosotros_banner{
        margin: 40px auto 20px;
    }
    #dash_nosotros {
        width: 90%;
        height: auto;
        grid-template-columns: 1fr 1fr;
    }

    .card_nosotros {
        height: auto;
    }

    #dash_mision_vision {
        margin: auto auto auto;
        width: 90%;
        grid-template-columns: 1fr 1fr;
    }

    #dash_objetivos {
        width: 90%;
        grid-template-columns: 1fr 1fr;
    }

    /*campeones*/
    #campeones_banner {
        width: 90%;
        margin: 40px auto 20px;
    }

    #galeria_campeones {
        width: 90%;
    }

    .imagen {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .imagen img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    /*nota de cierre*/
    #dash_nota {
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .card_nota {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    /*botones redes de la copa*/
    .instagram-btn {
        width: 65px;
        height: 65px;
        bottom: 20px;
        right: 15px;
    }

    .facebook-btn {
        width: 65px;
        height: 65px;
        bottom: 95px;
        right: 15px;
    }

    /*footer*/
    #footer {
        padding: 25px 20px;
    }

    #footer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {

    #dash_inicio,
    #dash_mision_vision,
    #dash_objetivos,
    #dash_nosotros {
        grid-template-columns: 1fr;
    }

    #dash_nosotros {
        height: auto;
    }

    .card_nosotros h4 {
        font-size: 1.4rem;
        min-height: 0;
    }

    .card_nosotros p,
    .card_nosotros ul {
        font-size: 1rem;
    }

    .card_contacto,
    .card_nota,
    .imagen {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .dash_card_contacto {
        grid-template-columns: 1fr 3fr;
    }

    #btn_inscripcion_container li {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}