:root {
    --fuenteHeading: 'PT Sans', sans-serif;
    --fuenteParrafos: 'Open Sans', sans-serif;

    --primario: #784d3c;
    --gris: #e1e1e1;
    --blanco: #fff;
    --negro: #000;
    --azul-oscuro: #070C1F;
    --texto: #F0EDED;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
    /*1 rem= 10px*/
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: var(--fuenteParrafos);
    font-size: 1.6rem;
    line-height: 2;
}

/*Globales*/
a {
    text-decoration: none;
}

@media (max-width: 767px) {
    .contenedor {
        max-width: 120rem;
        width: 90%;
        /*width: min(90%, 120rem);  Esta linea de codigo es lo mismo que las dos linea de arriba. Lo que hace es que toma el menor valor y lo aplica por ejemplo cuando hay espacio sufieciente para aplicar los 120rem se aplican pero cuando no hay espacio suficiente aplica el 90%*/
        margin: 0 auto;
    }
}

h1,
h2,
h3,
h4 {
    font-family: var(--fuenteHeading);
    line-height: 1.2;
}

h1 {
    font-size: 4.8rem;
}


h3 {
    font-size: 3.2rem;
}

h4 {
    font-size: 2.8rem;
}

img {
    width: 100%;
}


/*Utilidades*/

.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

.centrar-texto {
    text-align: center;
}

/*Header*/

/* MINE
.header {
    background-image: url(../img/imagen_principal.webp);
    background-size: cover;
    background-position: top;
    height: 70rem;
    color: var(--blanco);
    display: flex;
    
}
.header__principal {
    margin-left: 10rem;
    margin-top: 12rem;
    font-size: 3rem;
}*/


/* GTP*/

.header {
    position: relative;
    background: url(../img/Imagen_menu.jpg) no-repeat center center/cover;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.header .content {
    position: relative;
    color: white;
    text-align: center;
}

.header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}




/*Main*/

/*Estilos globales*/
main {
    background: url(../img/ChatGPT\ Image\ 17\ oct\ 2025\,\ 14_19_39.png) center/cover;
}

h2 {
    font-size: 4rem;
    color: var(--texto);
}

p {
    justify-content: center;
    color: var(--texto);
    
}
ol > li::marker {
  font-weight: bold;
}

.none {
    list-style: none;
}
ul,
ol,
span {
    color: var(--texto);
}
/*--- 3 COLUMNAS---------------

@media (min-width: 768px) {
    .contenido_principal {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 95%;
        margin: 0 2rem;
        gap: 1rem;
    }

    .bases_gym {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .columna-completa {
        grid-column: 1/4;
    }
}     -------------------------------------------  ---*/

@media (min-width: 768px) {
    .contenido_principal {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 95%;
        margin: 0 2rem;
        gap: 1rem;
    }

    .bases_gym {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .columna-completa {
        grid-column: 1/4;
    }
}







@media (min-width: 768px) {
    .separacion {
        border-right: 2px solid var(--negro);
        margin-bottom: 2rem;
        gap: 1rem;

    }
}

@media (min-width: 767px) {
    .separacion {
        border-bottom: 2px solid var(--negro);
        margin-bottom: 2rem;
    }

    .fondo_negro {
        margin: 0 0;
    }
}

a {
    font-size: 2.5rem;
    font-style: bold;
    color: var(--blanco);
}

a:hover {
    color: gray;

}


 @media (min-width: 768px) {
 .separacion {
    border-right: 4px solid gray;
    
    margin-bottom: 2rem;
    gap: 1rem;
    padding: 1rem;

}     
}

@media (max-width: 767px) {
 .separacion {
    border-bottom:  2px solid gray;
    margin-bottom: 2rem;
}     
}