:root {
    --amarillo: #E7FE55;
    --amarilo-claro: #E7ECCA;
    --blanco: #ffffff;
    --gris: #E7E7E7;
    --gris-2: #C0C2C3;
    --gris-3: #DCDCDC;
    --negro: #000000;
    --negro-2: #222222;
    --negro-3: #303030;
    --titulo-1: 3.2rem;
    --titulo-2: 2.4rem;
    --titulo-3: 2.0rem;
    --parrafo: 1.6rem;
    --texto-pequeño: 1.4rem;
}
/* hero-section  */
.hero-section {
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/fondo-circulo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-container {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero-subtitle {
    font-size: 1.6rem;
}
.hero-subtitle h1 {
    font-size: 1.2rem;
}
.hero-car {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-car img {
    width: 28rem;
}
.hero-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero-cta-p {
    width: 24rem;
    font-size: 1.4rem;
}
.hero-cta-a {
    color: var(--negro);
    margin-left: 2rem;
}
.hero-cta-button {
    padding-left: 4rem;
    padding-right: 4rem;
}
@media screen and (max-width: 500px) {
    .hero-container {
        padding: 2rem;
    }
    .hero-cta {
        flex-direction: column-reverse;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: end;
    }
    .hero-cta-p {
        width: 100%;
        padding-top: 2rem;
    }
    .hero-cta-button {
        padding-top: 2rem;
        width: 100%;
        padding-left: 0;
    }
}
@media screen and (min-width: 425px) {
    .hero-car img {
        width: 32rem;
    }
}
@media screen and (min-width: 768px) {
    .hero-car img {
        width: 60rem;
    }
    .hero-section {
        height: 100vh;
    }
}
@media screen and (min-width: 1024px) {
    .hero-car img {
        width: 80rem;
    }
}
/* services-section */
.services-section {
    background-color: var(--gris);
    width: 100%;
    padding-bottom: 4rem;
}
.services-title-container {
    display: grid;
    place-items: center;
    padding: 4rem;
}
.services-title-container p {
    max-width: 40rem;
    margin-top: 2rem;
}
.services-cards-container {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 4rem;
}
.service-card {
    max-width: 28rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 1rem;
}
.card-circle {
    width: 5rem;
    height: 5rem;
    background-color: var(--amarillo);
    border-radius: 99px;
    padding: 1.2rem;
    display: grid;
    place-items: center;
}
.card-circle img {
    width: 2.5rem;
    height: 2.5rem;
}
/* modulo-section */
.modulo-section {
    padding: 4rem;
    background-color: var(--gris);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8rem;
}
.modulo-section figure {
    background-color: var(--amarillo);
    max-width: 24rem;
    display: grid;
    place-items: center;
    padding: 2rem;
    border-radius: 1.6rem;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.modulo-text {
    width: 40rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
/* benefits-section */
.befits-section {
    background-color: var(--gris);
    padding: 8rem;
}
.befits-title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.befits-title-container img {
    width: 24rem;
}
.befits-title-container h3 {
    max-width: 60rem;
    font-size: var(--parrafo);
}
.benefits-cards-container {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 4rem;
}
.benefits-card { 
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.benefits-card p {
    max-width: 32rem;
    font-size: var(--texto-pequeño);
}
@media screen and (max-width: 450px) {
    .befits-section {
        padding: 2rem;
    }
}
@media screen and (min-width: 425px) {
    .befits-title-container img {
        width: 32rem;
    }
}
@media screen and (min-width: 768px) {
    .befits-title-container img {
        width: 60rem;
    }
}
@media screen and (min-width: 1024px) {
    .befits-title-container img {
        width: 80rem;
    }
}
/* faqs section */
.faqs-section {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.faqs-container {
    max-width: 60rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
details {
    background-color: var(--negro-3);
    color: var(--gris-3);
    padding: 1.2rem;
    border-radius: .8rem;
}
summary {
    padding: .8rem;
    color: var(--blanco);
    font-weight: 500;
    cursor: pointer;
}
details p {
    padding: .8rem;
    font-weight: 300;
}
details[open] > summary:first-of-type {
    list-style-image: url('/assets/icons/less-icon.svg');
}
details > summary:first-of-type {
    list-style-image: url('/assets/icons/icon-plus.svg');
}