@font-face {
    font-family: 'Zodiak';
    src: url(../fonts/Zodiak-Variable.ttf);
}
@font-face {
    font-family: 'ZodiakItalic';
    src: url(../fonts/Zodiak-VariableItalic.ttf);
}
@font-face {
    font-family: 'OpenSans';
    src: url(../fonts/OpenSans-VariableFont_wdth\,wght.ttf);
}
@font-face {
    font-family: 'OpenSansItalic';
    src: url(../fonts/OpenSans-Italic-VariableFont_wdth\,wght.ttf);
}
:root{
    --guinda1: #682145;
    --guinda2: #45112a;
    --dorado1: #bc955c;
    --dorado2: #ddc9a3;
    --verde1: #30453b;
    --verde2: #265b4d;
    --blancosuave: #f6f3ee;
    --blanco: #ffffff;
    --negro: #000000;
    --slategray: #767B91;
}
html{
    font-size: 62.5%;
    box-sizing: border-box;
    scroll-snap-type: y mandatory;
}
*,*::before,*::after{
    box-sizing: inherit;
}
body{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.pantalla_inicio, .pantalla_cards{
    scroll-snap-stop: always;
    scroll-snap-align: center;
}

/*************** Pantalla Inicio ***************/
.header{
    width: 100%;
    background-image: url(../img/greca.png);
    background-size: 6%;
    background-repeat: repeat-x;
    background-position-y: bottom;
    padding-bottom: 2rem;
}
.headerdiv{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 5rem 0rem;
}
.headerdiv img:nth-of-type(1){
    width: 22rem;
}
.headerdiv img:nth-of-type(2){
    width: 18rem;
}
.headerdiv img:nth-of-type(3){
    width: 18rem;
}
main{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pantallaboton{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pantallaboton .contenedor{
    width: 85%;
    height: 60rem;
    background-image: url(../img/bg-oaxaca-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    margin-top: 10rem;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pantallaboton .contenedor h1{
    font-family: 'Zodiak';
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
    color: var(--dorado1);
    text-transform: uppercase;
    text-align: center;
}
.contenedorboton{
    width: 40%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contenedorboton img{
    width: 30%;
    z-index: 3;
}
.contenedorboton a{
    background-color: var(--dorado1);
    font-family: 'Zodiak';
    font-size: 4.8rem;
    font-weight: 600;
    letter-spacing: 0.4rem;
    color: var(--blanco);
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 1rem;
    padding: 1rem 3rem;
    transition: all ease-in 0.2s;
}
.contenedorboton a:hover{
    transform: scale(1.1);
    background-color: var(--dorado2);
}
.contenedorboton img{
    position: absolute;
    top: 3rem;
    right: -2rem;
}
#animated-title span {
    display: inline-block;
    transform: translateY(0);
    animation: none;
}
@keyframes bounce {
    0%   { transform: translateY(0); }
    30%  { transform: translateY(-15px); }
    60%  { transform: translateY(5px); }
    100% { transform: translateY(0); }
}
/*************** Pantalla Cards First Mobile ***************/
.pantallacards{
    margin-top: 10rem;
    width: 90%;
    height: 60rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.card{
    background-color: var(--verde2);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.card .divimagen{
    width: 100%;
    height: 40rem;
}
.card .divimagen img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}
.card .divinfo{
    padding: 2rem 2rem 1rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card .divinfo h2{
    font-family: 'Zodiac';
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.3rem;
    color: var(--blanco);
    margin: 1rem 0;
}
.card .divinfo .etiqueta{
    background-color: var(--dorado1);
    width: 5.3rem;
    height: 0.5rem;
}
.card .divinfo p{
    font-family: 'OpenSans';
    font-size: 1.8rem;
    font-weight: 200;
    color: var(--blanco);
    justify-self: end;
}
.card:hover{
    background-color: var(--dorado1);
}
.card:hover img{
    filter: none;
}
.card:hover .etiqueta{
    background-color: var(--blanco);
}