* {
    margin: 0;
    padding: 0;
    color: var(--azul-principal);
    font-family: var(--texto);
}

:root {
    --azul-principal: #083C6F;
    --azul-secundario: #325B86;
    --azul-claro: #eef4ff;
    --azul-acuarela: #B5C8DF;
    --fondo: #F5F6F8;
    --dorado-suave: #CDB19D;
    --beige: #f6ebe2;

    --titulo: 'Playfair Display', sans-serif;
    --texto: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}
.no-bold {
    font-weight: normal !important;
}

.bg-blue {
    background-color: var(--azul-claro);
}

.bg-dark-blue {
    background-color: var(--azul-principal);
}

.bg-gold {
    background-color: var(--beige);
}

.border-gold {
    border: 2px solid var(--beige);
}

.border-right {
    border-right: 2px solid var(--fondo);
    padding-right: 3em;
}

.border-bottom {
    border-bottom: 2px solid var(--fondo);
    padding-bottom: 3em;
}

.bold {
    font-weight: bold;
}

.align-end {
    align-self: flex-end;
}

h1 {
    font-family: var(--titulo);
}

a {
    text-decoration: none;
}

.blue-button {
    color: var(--fondo);
    background-color: var(--azul-principal);
    padding: 10px 20px;
    border-radius: 15px;
    transition: all ease-in-out .25s;
    cursor: pointer;
}

.blue-button:hover {
    box-shadow: 0 1px 15px 0 var(--azul-secundario);
}

.white-button {
    color: var(--azul-principal);
    border: 1.5px solid var(--azul-principal);
    padding: 10px 20px;
    border-radius: 15px;
    transition: all ease-in-out .25s;
    cursor: pointer;
}

.white-button:hover {
    box-shadow: 0 1px 15px 0 var(--azul-secundario);
}

body {
    width: 100%;
    max-width: 1600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    justify-self: center;
}

/* HEADER */

header {
    width: 98%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

header > img {
    width: 100%;
    max-width: 150px;
}

header ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 1.75em;
}

header ul li {
    list-style: none;
    font-size: 18px;
    line-height: 1.5em;
}

.blue-button a {
    color: var(--fondo);
    text-decoration: none;
}

.desplegableInfo:hover, .desplegable:hover, .map-div button:hover {
    cursor: pointer;
}

header ul li a:not(.blue-button, .white-button), .desplegableInfo, .desplegable, p.text a, .map-div button {
    position: relative;
    text-decoration: none;
}

header ul li a:not(.blue-button, .white-button)::after, .desplegableInfo::after, .desplegable::after, p.text a::after, .map-div button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background-color: currentColor;
    transition: width 0.2s ease-in-out;
}

header ul li a:not(.blue-button, .white-button):hover::after, .desplegableInfo:hover::after, .desplegable:hover::after, p.text a:hover::after, .map-div button:hover::after {
    width: 100%;
}

.section__ayuda__container__card-info:hover .desplegableInfo::after {
    width: 100%;
}

/* BOTÓN HAMBURGUESA (oculto en desktop) */

.menu-toggle {
    display: none;
    position: relative;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    padding: 0;
    margin-right: 20px;
    cursor: pointer;
    z-index: 60;
    flex-shrink: 0;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: var(--azul-principal);
    border-radius: 3px;
    transition: transform .35s cubic-bezier(.65,0,.35,1),
                opacity .2s ease,
                top .35s cubic-bezier(.65,0,.35,1);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }

.menu-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

/* END HEADER */


main {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* SECTION 1 */

h1 {
    font-size: 60px;
    line-height: 1.25em;
}

p.text {
    font-size: 22px;
    line-height: 1.5em;
}

.section__presentation {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin: 1.5em 0 3.5em;
    gap: 1.5em;
}

.section__presentation__img {
    width: 100%;
    max-width: 600px;
    height: fit-content;
}

.section__presentation__text-bg {
    display: none;
}

.section__presentation__text {
    width: 100%;
    max-width: 565px;
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.section__presentation__text__container {
    display: flex;
    gap: 2.5em;
}

.section__presentation__text__container__icons img {
    width: 30px;
}

.section__presentation__text__container__icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
}

.section__presentation__text__container__icons a.map {
    position: relative;
    text-decoration: none;
}

.section__presentation__text__container__icons a.map::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background-color: currentColor;
    transition: width 0.3s ease-in-out;
}

.section__presentation__text__container__icons a.map:hover::after {
    width: 100%;
}

.map-div button {
    border: none;
    background-color: transparent;
    font-size: 16px;
    line-height: 1.25em;

}

.section__presentation__text__container__icons p {
    font-size: 18px;
    line-height: 1.5em;
}

.section__presentation__arrowimg {
    position: absolute;
    bottom: -20px;
    right: 50%;
}

/* MAPA INCRUSTADO */

.map-embed {
    width: 100%;
    max-width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: -2em;
    display: flex;
    flex-direction: column;
    gap: .75em;
    transition: max-height .5s ease-in-out, opacity .4s ease-in-out, margin-top .4s ease-in-out;
}

.map-embed.active {
    max-height: 360px;
    opacity: 1;
    margin-top: .5em;
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 16px;
}

.map-embed__link {
    align-self: flex-start;
    font-size: 16px;
    text-decoration: underline;
}

/* END MAPA INCRUSTADO */

/* END SECTION 1 */

/* SECTION 2 AYUDA */

.section__ayuda {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
}

h2 {
    font-size: 30px;
    line-height: 1.25em;
    font-weight: 700;
}

.section__ayuda__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: normal; 
    margin: 2em 0 4em;
    gap: 1.5em;
}

.section__ayuda__container__card {
    width: 90%;
    background-color: var(--azul-claro);
    border-radius: 20px;
    padding: 1.5em 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.section__ayuda__container__card p {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5em;
}

.section__ayuda__container__card > img {
    width: 100%;
    max-width: 150px;
    height: auto;
}

.section__ayuda__container__card-text {
    width: 100%;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: flex-start;
    gap: 1em; 
    border-radius: 20px;
    background-color: var(--azul-claro);
}

.section__ayuda__container__card-text ul {
    padding-left: 1.25em;
}

.section__ayuda__container__card-text li {
    font-size: 18px;
    line-height: 1.5em;
}

.section__ayuda__container__card-text .text-hidden {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.section__ayuda__container__card-text .section__presentation__text__container {
    margin-bottom: .75em;
}

.section__ayuda__container__card-info {
    display: flex;
    flex-direction: row;
    align-self: flex-start;
    align-items: center;
    gap: .5em;
}

.section__ayuda__container__card-info img {
    width: 32px;
    transition: transform 0.5s ease-in-out;
    cursor: pointer;
}
.section__ayuda__container__card-info img.rotate {
    transform: rotate(180deg);
}

/* END SECTION 2 AYUDA */

/* SECTION 3 SOMOS */

.section__somos {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2em;
}

.section__somos__text {
    max-width: 90%;
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.section__somos__container {
    width: 100%;
    max-width: 85%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2em;
    margin: 2em 0 4em;
}

.section__somos__container__person {
    width: 100%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    background-color: var(--beige);
    border-radius: 20px;
    min-height: 730px;
    transition: min-height 0.5s ease-in-out;
}

.section__somos__container__person > img {
    border-radius: 20px 20px 0 0;
    width: 100%;
    height: auto;
}

.text-hidden > p:first-child {
    margin-bottom: 1.25em;
}

.text-hidden {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
}

.is-active .text-hidden {
    max-height: 940px;
    opacity: 1;
}

.section__somos__container__link.btn-toggle {
    margin-top: auto;
}

.section__somos__container__person__text {
    width: 100%;
    max-width: 85%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-self: center;
    padding-bottom: 1.25em;
    flex: 1;
}

.section__somos__container__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5em;
}

.section__somos__container__person__text p {
    font-size: 18px;
    line-height: 1.5em;
}

.section__somos__container__person__text .text-h3 {
    font-size: 24px;
    line-height: 1.5em;
    font-weight: bold;
}

.desplegableInfo, .desplegable {
    font-size: 16px !important;
    color: inherit;
}

.section__somos__container__link img {
    width: 32px;
    transition: transform 0.5s ease-in-out;
}
.section__somos__container__link img.rotate {
    transform: rotate(180deg);
}


/* END SECTION 3 SOMOS */

/* SECTION 4 WORK */

.section__work {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2em;
    margin-bottom: 4em;
}

.section__work__container {
    width: 100%;
    max-width: 1150px;
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.section__work__info {
    display: flex;
    flex-direction: row;
    gap: 1.25em;
    border-radius: 15px;
    padding: 1.5em 1em;
}

.section__work__info img {
    width: 34px;
}

/* END SECTION 4 WORK */

/* SECTION 5 ENFOQUE */

.section__enfoque {
    width: 100%;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    gap: .75em;
    margin: 0 0 2em;
}

.section__enfoque .text-h1 {
    margin-bottom: .5em;
}

/* END SECTION 5 ENFOQUE */

/* SECTION 6 ENFOQUE ICONS */

.section__enfoque__icons {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .75em;
    margin: 0 0 2em;
    background-color: var(--beige);
    border-radius: 20px;
    padding: 1.5em 2em;
    box-sizing: border-box;
}

.section__enfoque__icons__containter {
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5em;
}

.section__enfoque__icons__containter img {
    width: 35px;
}

.section__enfoque__icons__containter p.text {
    font-size: 18px;
    line-height: 1.25em;
}

/* END SECTION 6 ENFOQUE ICONS */

/* SECTION 7 TARIFAS */

.section__precio {
    width: 100%;
    margin: 2.5em 0;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.section__precio__container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: normal;
    flex-wrap: wrap;
    gap: 1em;
}

.section__precio__container__card {
    width: 100%;
    max-width: 290px;
    flex: 1 1 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
    padding: 2em 1em;
    border-radius: 20px;
    border: 1px solid var(--azul-acuarela);
}

.section__precio__container__card > a {
    width: 60%;
    text-align: center;
    padding: 1em .5em;
    margin-top: auto;
}

.section__precio__container__card__text {
    text-align: center;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    gap: .75em;
    flex: 1;
}

.section__precio__container__card__text p:first-child {
    font-size: 24px;
    line-height: 1.5em;
}

.section__precio__card__includes__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
}

.section__precio__card__includes {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin: 0 0 1.25em 0;
    flex: 1;
}

.text-h1 {
    font-size: 40px;
    line-height: 1.25em;
}

.text-time {
    font-size: 18px;
    line-height: 1.5em;
}

.text-price {
    font-size: 50px;
    line-height: 1.5em;
}

.text-center {
    font-size: 18px;
    line-height: 1.5em;
}

.text-price-container {
    text-align: center;
}

span {
    font-size: 30px;
    line-height: 1.5em;
}

.section__info {
    display: flex;
    flex-direction: row;
    gap: 1.25em;
    border-radius: 15px;
    padding: 1.5em 1em;
}

.section__info img {
    width: 40px;
    color: var(--azul-principal);
}

.section__info__text {
    width: 90%;
}

.section__info__text p {
    font-size: 18px;
    line-height: 1.5em;
}

/* END SECTION 7 TARIFAS */


/* SECTION 8 PREGUNTAS */
.section__preguntas {
    width: 100%;
    margin: 2.5em 0;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}
.section__preguntas__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
}




.section__preguntas__container-div {
    width: 100%;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1em 1.5em;
    border: 1px solid var(--azul-acuarela);
    border-radius: 10px;
    cursor: pointer;
}

.section__preguntas__container-div-pregunta {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.section__preguntas__container-div-pregunta img {
    width: 32px;
    height: 32px;
    transition: transform 0.6s ease-in-out;
}
.section__preguntas__container-div-pregunta img.rotate {
    transform: rotate(180deg);
}
.section__preguntas__container-pregunta-text {
    width: 85%;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease-in-out;
    will-change: grid-template-rows;
}
.section__preguntas__container-pregunta-text.active {
    grid-template-rows: 1fr;
}
.section__preguntas__container-pregunta-text__inner {
    display: flex;
    flex-direction: column;
    gap: .5em;
    font-size: 18px;
    line-height: 1.5em;

    /* PROPIEDADES DE ANIMACIÓN */
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, padding-top 0.4s ease-in-out;
}
.section__preguntas__container-pregunta-text.active .section__preguntas__container-pregunta-text__inner {
    opacity: 1;
    padding-top: 1em;
}

/* END SECTION 8 PREGUNTAS */

/* SECTION 9 FOOTER */
footer {
    width: 100%;
}
.contacto {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.legal {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contacto__title {
    width: 90%;
    padding: 2em 0 4em;
}
.contacto__container {
    width: 95%;
    display: flex;
    flex-direction: row;
    gap: 2.25em;
    padding: 4em 0;
    font-size: 16px;
    line-height: 1.5em;
}
.contacto__container p.text {
    font-size: 18px;
}
.contacto__container-ubicacion {
    border-right: 2px solid var(--azul-principal);
    border-left: 2px solid var(--azul-principal);
    padding: 0 2.25em;
}
.contacto__container-ubicacion .plano {
    width: 100%;
    max-width: 470px;
}
.contacto__container-contacto, .contacto__container-ubicacion, .contacto__container-horario, .contacto__container-logo {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.contacto__container-logo {
    gap: 3em;
}
.contacto__container-logo-rrss {
    display: flex;
    flex-direction: row;
    gap: 1.5em;
}
.contacto__container-logo p.text {
    font-size: 16px;
}
.contacto__container-logo img {
    width: 150px;
}
.contacto__container-logo-rrss img {
    width: 30px;
}
.contacto__container-ubicacion-texto {
    display: flex;
    flex-direction: row;
    gap: .5em;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}
.contacto__container-ubicacion-texto p {
    line-height: 2em;
}
.contacto__container-ubicacion-texto img {
    width: 30px;
}

.contacto__container-horario-texto {
    display: flex;
    flex-direction: column;
    gap: .5em;
}
.legal__container {
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3em;
    padding: 2em 0;
    text-align: center;
}
.legal p, .legal a {
    font-size: 16px;
    line-height: 1.5em;
    color: var(--fondo);
}

/* ICONO FLOTANTE DE WHATSAPP */

.whatsapp-float {
    position: fixed;
    right: 2.75em;
    bottom: 2em;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 90;
    transition: transform .25s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* END ICONO FLOTANTE DE WHATSAPP */

/* BOTON VOLVER ARRIBA (solo mobile) */

.back-to-top {
    position: fixed;
    right: 3em;
    bottom: 11em;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background-color: var(--azul-principal);
    color: var(--fondo);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .3s ease-in-out, transform .3s ease-in-out;
    z-index: 90;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* END BOTON VOLVER ARRIBA */

@media (width <= 1220px) {

    .section__presentation {
        justify-content: center;
    }

    .section__presentation__img {
        display: none;
    }

    .section__presentation__text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2em;
        text-align: center;
        align-items: center;
    }

    .section__presentation__text .section__presentation__text__container {
        flex-direction: column;
        width: 255px;
    }

    .section__ayuda__container__card {
        width: 100%;
    }

    .section__somos__container {
        max-width: 90%;
    }

    .section__enfoque {
        max-width: 90%;
    }

    .section__info {
        width: 80%;
    }

    .section__precio__container__card {
        max-width: 240px;
        flex: 1 1 240px;
    }

}

@media (width <= 1024px) {

    .menu-toggle {
        display: block;
    }

    header {
        position: relative;
        width: 90%;
    }

    header nav {
        position: absolute;
        top: 60%;
        right: 0;
        z-index: 50;
    }

    header nav ul {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: max-content;
        max-width: 80vw;
        background-color: var(--fondo);
        border-radius: 20px;
        box-shadow: 0 12px 30px rgba(8, 60, 111, 0.18);
        padding: 0;
        gap: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height .4s ease-in-out, opacity .3s ease-in-out, padding .4s ease-in-out;
    }

    header nav ul.nav-open {
        max-height: 500px;
        opacity: 1;
        padding: .75em;
        gap: .5em;
    }

    header ul li {
        width: 100%;
    }

    header ul li a {
        display: block;
        padding: .75em 1em;
        border-radius: 12px;
    }

    header ul li a:not(.blue-button):hover {
        background-color: var(--azul-claro);
    }

    header ul li a:not(.blue-button, .white-button) {
        position: static; 
    }

    header ul li a:not(.blue-button, .white-button)::after {
        content: none;
        position: static;
    }

    header ul li .blue-button {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .section__presentation__text__container__icons:not(.white-button) {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section__preguntas__container-div {
        max-width: 80%;
    }

    .section__enfoque {
        max-width: 100%;
    }    

    .legal__container {
        flex-direction: column;
        text-align: center;
        gap: 1.5em;
        width: 60%;
    }

    .border-right {
        border-right: none;
        border-bottom: 2px solid var(--fondo);
        padding-right: 0;
        padding-bottom: 1.5em;
    }

    .contacto__container {
        flex-direction: column;
        text-align: center;
        gap: 1.5em;
    }
    .contacto__container-contacto, .contacto__container-ubicacion, .contacto__container-horario, .contacto__container-logo {
        align-items: center;
    }

    .contacto__container-ubicacion .plano {
        max-width: 100%;
    }

    .contacto__container-ubicacion {
        border-right: none;
        border-left: none;
        border-top: 2px solid var(--azul-principal);
        border-bottom: 2px solid var(--azul-principal);
        padding: 1.75em 0;
    }

    .back-to-top {
        display: flex;
    }

}

@media (width <= 876px) {

    .section__somos__container {
        flex-direction: column;
        align-items: center;
    }

    .section__somos__container__person {
        min-height: auto;
    }

    .section__ayuda__container__card {
        flex-direction: column;
        gap: 1em;
    }

    .section__ayuda__container__card .section__presentation__text__container {
        gap: 1.5em;
    }
    
    .section__ayuda__container__card-text {
        max-width: 90%;
    }

}

@media (width <= 768px) {

    .section__ayuda__container__card > img {
        max-width: 100px;
    }

    .section__info img {
        width: 30px;
    }

    .section__precio__container__card {
        max-width: 100%;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 20px;
    }

    .text-h1 {
        font-size: 24px;
    }

    .section__somos__container__person__text .text-h3 {
        font-size: 22px;
    }

    p.text, .section__preguntas__container-pregunta-text p,.text-hidden li {
        font-size: 16px;
    }

    .section__precio__container__card__text p:first-child {
        font-size: 18px;
    }

    .section__presentation__text__container {
        gap: 1.5em;
    }

    .section__work__info {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .section__info {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        align-self: center;
    }

    .section__precio__container {
        justify-content: center;
    }

    .text-hidden .section__presentation__text__container {
        flex-direction: column;
        width: 255px;
    }

    .section__preguntas__container-div {
        max-width: 90%;
        padding: 1em;
    }

    .section__preguntas__container-pregunta-text {
        width: 100%;
    }
    
    .whatsapp-float {
        right: 2.25em;
    }

}