/* Fuentes */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@200;300;400&family=Open+Sans:wght@300;400&display=swap');

:root {
    --FuenteSonora: 'Bebas Neue', cursive;
    --FuenteByte: 'Montserrat', sans-serif;
    --FuenteCeros: 'Open Sans', sans-serif;

    /* Paleta de Colores */
    --blanco: #fff;
    --negro: #000;
    --amarillo: #ffde59;
    --azulClaro: #38b6ff;
    --otroAzul: #68e1fd;
    --menuAzul: #062a38;
    --detalles1: #38062a;
    --detalles2: #2a3806;

}

html {
    box-sizing: border-box;
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: var(--FuenteByte);
    font-size: 1.6rem;
    line-height: 2;
}

/* Globales */

.contenedor {
    width: min(90%, 120rem);
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: var(--negro);
}

h1,
h2,
h3,
h4 {
    font-family: var(--FuenteSonora);
    line-height: 1.2;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 4rem;
}

h3 {
    font-size: 3.2rem;
}
@media (max-width:400px ) { 
    h3 {
        font-size: 2.8rem;
    }
}

h4 {
    font-size: 2.8rem;
}

img {
    max-width: 100%;
}

.bold {
    font-weight: bolder;
}

/* Header */

.fondo {
    background-image: url(../img/background.jpg);
    min-height: 100vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.logoSonora{
    position: absolute;
    /* max-height: calc(100vh - 60vh); */
    right: 0;
    top: calc(100vh - 65vh);
    width: 45%;
}

/* @media (max-width: 1000px) { 
    .logoSonora{
        width: 50%;
    }
}*/
@media (max-width: 768px) { 
    .logoSonora{
        width: 60%;
        height: calc(50vh - 25vh);
    }
}

@media (max-width: 380px) { 
    .logoSonora{
        width: 65%;
        height: calc(70vh - 45vh);
    }
} 

.nombre {
    padding-right: 2rem;
}

.nombre h1 {
    margin: 0;
    color: var(--amarillo);
    letter-spacing: 1rem;
    font-size: 3.5rem;
}

.nombre span {
    display: block;
    font-family: var(--FuenteByte);
    font-size: 2.5rem;
}

.ceros_pack {
    display: flex;
    gap: 1.5rem;
    color: var(--blanco);
}


.ceros_pack-col {
    display: flex;
    flex-direction: column;

}

.ceros_pack-col:first-of-type {
    border-left: 2px solid var(--blanco);
    padding-left: 3rem;
}

.logo {
    display: flex;
    align-items: center;

}

.barra, .barra__internas {
    padding-top: 4rem;
    display: flex;    
    color: var(--blanco);    
    justify-content: center;
}

.barra__menu {
    display: flex;
    gap: 2.5rem;
}
.barra__menu a {
    color: var(--blanco);
    text-transform: uppercase;
    padding: .5rem 1rem;
    border-radius: .8rem;
    border: 2px solid transparent;
    font-family: var(--FuenteByte);
}

.barra__menu a:hover {
    border: 2px solid var(--blanco);
}

@media (max-width:630px ) { 
    .barra__menu{
        gap: 1rem;
        font-size: 1.2rem;
    }
}
@media (max-width: 500px) { 
    .barra{
        flex-direction: column;
        align-items: center;
        gap: 4rem;
    }
}



/************* Servicios ****************/
.main {
    text-align: center;
    min-height: 100vh;
    padding: 1rem 0;
}



.servicios {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
@media (max-width: 768px) { 
    .servicios{
        grid-template-columns: repeat(2, 1fr);
    }
   
}

@media (max-width: 480px) { 
    .servicios{
        grid-template-columns:  1fr;
    }
   
}
.iconos {
    background-color: var(--amarillo);
    border-radius: 50%;
    display: inline;
}


/************** CONTACTO *************/

.contacto {
    min-height: 100vh;
    text-align: center;
    background-image: linear-gradient(120deg, rgba(189, 194, 191, 0.646) 0%, rgba(85, 162, 200, 0.475) 100%), url(../img/contacto/contacto-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 1.5rem;
}


.contacto h3 {
    color: var(--amarillo);
    margin: 0;
}

.contacto__flex {
    display: flex;
    padding: 1rem 2rem;
    margin-top: 2rem;
    gap: 3rem;
}

.contacto__form {
    background-color: rgba(255, 255, 255, .7);
    display: flex;
    flex-direction: column;
    width: 30%;
    padding: 3rem;
    border-radius: 1rem;
}

.contacto__form input {
    display: block;
    background-color: unset;
    border: none;
    outline: 0;
    padding: .5rem ;
    margin-top: .5rem;
    border-bottom: 2px solid rgb(164, 160, 160);
}

.contacto__form textarea {
    height: 15rem;
}

.contacto__flex img {
    margin: 0 auto;
}

@media (max-width: 768px) { 
    .contacto__flex img{
        display: none;
    }
    .contacto__form{
        width: 100%;
    }
    }


.contacto__form button {
    font-weight: bold;
    margin-top: 1.5rem;
    border: 1px solid rgb(77, 54, 2);
    background-color: var(--amarillo);
    text-transform: uppercase;
    border-radius: 1rem;
    padding: 1rem;
}

.contacto__form button:hover {
    background-color: #c2a11c;
    border: 1px solid var(--amarillo);
    color: white;
}


/*********************FOOTER **************************************/
.footer {
    min-height: 100vh;
    background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer__container {
    display: flex;
    /* grid-template-columns: 2fr 1fr 1fr; */
}


.grid__options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3rem;
    margin: 0 auto;
}

.grid__options div {
    width: 15rem;
    height: 15rem;
    background-color: rgba(255, 255, 255, 0.571);
    border-radius: 1.5rem;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hover:hover{
    background-color: unset;
    border: 1px solid var(--blanco);
    transition: all 1s;
}
@media (max-width: 875px) { 
    .grid__options div{
        width: 13rem;
        height: 13rem;
        /* font-size: 1.2rem; */
        text-align: center;
    }
    .grid__options{
        gap: 1.8rem;
    }
}

@media (max-width: 768px) { 
    .grid__options div{
        width: 10rem;
        height: 10rem;
        /* font-size: 1.2rem; */
        text-align: center;
    }
    .grid__options{
        gap: 1.5rem;
    }
}

@media (max-width: 675px) { 
    .footer__container{
        min-height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }
    .grid__options{
        gap: 1rem;
    }
}




.servicios,
.barra,
.main,
.contacto,
.footer,
.main__internas {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    
}



/**************** PAGINAS INTERNAS ***********/

.header__internas{    
    background-color: var(--menuAzul);
}

.barra__internas{
    padding: 2.2rem;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.barra__internas img{
    /* width: 22%; */
    width: 30rem;
    position: absolute;
    right: 0;
    top:0;
    margin-bottom: .5rem;
}

/* .main__internas{
    min-height: 100vh;
} */

.main__internas-grid{
    padding-top: 3rem;
    display: grid;
    grid-template-areas: "svg info";
    grid-template-columns: repeat(2,1fr);    
    gap: 3rem;
    
}
@media (max-width: 768px) { 
    .main__internas-grid{
    grid-template-areas: "svg"
                        "info";
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    }
       
}   

@media (max-width:600px ) { 
    .barra__internas img{
        /* width: 32%; */        
        width: 22rem;
        top: 2rem;
    }
}

@media (max-width:480px ) { 
    .barra__internas img{
        /* width: 32%; */        
        width: 10rem;
    }
}

.texto{
    grid-area: info;
}
.texto h3{
    margin: 0;
    
}

.texto span{
    font-weight: bold;
}


.lista__aclaraciones{
    list-style: none;
    line-height: 1.2rem;
}