* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: .5s ease all;
    
}

body {
    font-family: "Nunito", sans-serif;
    background-color: #eefaf9;
    border-top: 20px solid #0c8d10; 
    text-align: center;
    color:#000;
}

header {
    width: 100%;    
    border-top: 20px solid #fff;  
    & div{
        border-top: 5px solid #d6e1e0;
        width: 100%;
        padding: 1rem 0;
    }
}

img.logo{
    width: 25%;
    max-width: 250px;
}

h1{
    padding: 1rem;
    font-size: 1.4rem;
    line-height: 1.75rem;
    font-weight: 750;
    text-transform: uppercase;
    color: #0c8d10;
}

h2{
    font-size: 2rem;
    font-weight: 750;
    line-height: 2rem;
    padding:0 1rem;
}

.ciudades{
    padding: 2rem 0;    
    width: 92%;
    max-width: 900px;
    margin: auto;
    display: flex;
    gap: 25px;
}

.ciudad{
    border-radius: 5vh;
    background: linear-gradient(#76ddcc, #eefaf9);
    width: 49%;        
    display: flex;
    flex-direction: column;
    justify-content: flex-end !important;
    gap: 15px;
    padding: 2rem 1rem;    
    & a{
        margin: 0 auto !important;
    }
}

.icono{
    width: 90%;
    max-width: 250px;  
}
.icono.mad{
    max-width: 325px;
}
.icono:hover{
    transform: scale(1.1);
}

.boton {
    background-color: #0c8d10;
    color: #ffffff;
    border: none;
    padding: 0.8rem 0;
    font-size: 2rem;
    font-weight: 750;
    border-radius: 1.5vh;
    cursor: pointer;
    font-family: Nunito, sans-serif;  
    text-transform: uppercase;
    text-decoration: none;
    width: 100%;
    max-width: 300px;
    margin: auto;
}
.boton:hover {
    background-color: #065008;
}

footer{
    background-color: #7cdecf;
    padding: 1rem;
    position: absolute;
    width: 100%;
    bottom: 0;    
    & div{
        width: 100%;
        max-width: 900px;
        margin: auto;
        display: flex;
        justify-content:space-between;
        align-items: center;
        & img{width: 75px;}
        & p{display: block; font-size: .75rem;}
    }
}

@media (max-width: 600px){
    header div{padding-bottom:0}
    h1{font-size: 1rem;line-height: 1.2rem;}
    h2{font-size: 1.4rem;line-height: 1.4rem; padding: 0 .5rem;}
    .ciudades{gap: 10px; padding-top:1rem;}
    .boton{font-size: .8rem;}
    footer p{font-size: .7rem; text-align: right;}
    
}

@media (orientation: landscape) and (max-height: 800px) {
    footer{position:static !important;}    
}

@media (orientation: portrait) and (max-height: 500px) {
    footer{position:static !important;}    
}