/* Font Lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
:root {
    --verde: #009639;
    --rosa: #EB2553;
    --gris: #737373;
}
/*  ====================================
                Globales
    ==================================== */
html {
    height: 100%;
}
body {
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Lato', sans-serif;
    background: #FBFBFB;
}
main {
    flex: 1;
}
img {
    width: 100%;
    height: auto;
}
a {
    text-decoration: none;
}
ul,li {
    list-style: none;
}
section.seccion {
    margin-bottom: 40px;
}
/*  ====================================
                Utilidades
    ==================================== */
.container {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: 0 auto;
}
.mobile {display: block;}
.desktop {display: none;}
@media (min-width:780px) {
    .desktop {display: block;}
    .mobile {display: none;}
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: var(--rosa);
    width: 100%;
    max-width: 400px;
    height: 50px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.text-center {
    display: block;
    text-align: center;
}
@media (min-width:780px) {
    .mobile {display: none;}
}
/*  ====================================
                Header
    ==================================== */
#header {
    margin-bottom: 20px;
}
#header .topbar {
    background: var(--rosa);
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
#header .logo {
    width: 90%;
    max-width: 250px;
}
#header .portada {
    max-width: 600px;   
    margin: 0 auto;
}
#header .titulo {
    text-align: center;
    font-size: 32px;
    margin: 0 0 40px;
    font-weight: 900;
}
/*  ====================================
                Lista
    ==================================== */
.checks {
    padding: 0 20px;
    margin-bottom: 40px;
}
.checks .lista {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    padding-left: 30px;
}
.checks .lista li {
    position: relative;
    font-weight: bold;
}
.checks .lista li::before {
    content: '';
    position: absolute;
    background-image: url(../images/checkmark.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    left: -30px;
    top: 0;
}
/*  ====================================
                Footer
    ==================================== */
#footer .banner {
    width: 100%;
    height: 177px;
    object-fit: cover;
}
@media (min-width:780px) {
    #footer .banner { height: auto; }
}