* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    /* Colores */
    --color-vc: #D0D9AE;
    --color-vo: #3F4B35;
    --color-mo: #524D49;
    --color-mc: #A0968D;
    --color-bh: #F1F0EB;

    /* Tipografía */
    --fuente-principal: "DM Sans", sans-serif;
    --fuente-secundaria: "Sora", sans-serif;


    /* Espaciado */
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-xl: 40px;

    /* Dimensiones */
    --ancho-maximo: 1200px;
    --th-general: 2rem;
}

/* Uso de las variables */
body {
    font-size: var(--tamano-texto);
    color: var(--color-texto);
    overflow-x: hidden;
    background-color: var(--color-bh);
}

header {
    position: relative;
    max-width: 100%;
}

a {
    text-decoration: none;
}

h1 {
    font-weight: 600;
    font-family: var(--fuente-principal);
    letter-spacing: 4px;
    color: var(--color-vc);
    font-size: 1.7rem;
    text-align: center;
}

h6 {
    font-weight: 500;
    font-family: var(--fuente-principal);
    color: var(--color-vc);
    font-size: 1rem;
    text-align: left;
}

h2 {
    color: var(--color-mo);
    font-family: var(--fuente-secundaria);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

h3 {
    color: var(--color-vc);
    font-family: var(--fuente-principal);
    font-weight: 500;
    font-size: .85rem;
    margin-top: 1.7rem;
}

h4 {
    font-family: var(--fuente-secundaria);
    font-weight: 400;
    text-align: center;
    font-size: 1.15rem;
    margin-top: 1.25rem;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 2.5rem;
    font-family: var(--fuente-secundaria);
}

p.max-content-axis {
    max-width: 80%;
    color: var(--color-mo);
    font-weight: 400;
    line-height: 1.7;
}

footer {
    margin-top: 9rem;
    padding-top: 1.25rem;
    min-height: 20rem;
    background-color: var(--color-vo);
}


footer h4 {
    text-align: center;
    padding-bottom: 1.25rem;
}

.loader {
    position: fixed;
    z-index: 99999999999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader>img {
    width: 100px;
    transform: scale(3);
}





/**/

.desktop-el {
    display: none;
}

/*Tipado*/

.color-bh {
    color: var(--color-bh);
}

.color-mo {
    color: var(--color-mo);
}

.color-vc {
    color: var(--color-vc);
}

.color-vo {
    color: var(--color-vo);
}


.number-type-1 {
    font-family: var(--fuente-secundaria);
    letter-spacing: 3px;
    color: var(--color-vo);
    font-size: 3rem;
    font-weight: 500;
}

.heading-type-1 {
    color: var(--color-bh);
}

.p-type-1 {
    color: var(--color-bh);
}

.button-type-1 {
/*    background: url("../../img/svg/btn_1.svg");*/
    background-image: url('../../img/svg/btn_1.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 50%;
    font-family: var(--fuente-secundaria);
    border: none;
    outline: none;
    padding: 25px 45px;
}

.button-type-2 {
/*    background: url("../../img/svg/btn_2.svg");*/
    background-image: url('../../img/svg/btn_2.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 50%;
    font-family: var(--fuente-secundaria);
    border: none;
    outline: none;
    padding: 55px 65px;
}

.button-type-3 {
/*    background: url("../../img/svg/btn_3.svg");*/
    background-image: url('../../img/svg/btn_3.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    font-family: var(--fuente-secundaria);
    background-position: 0 50%;
    border: none;
    outline: none;
    padding: 55px 65px;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: var(--spacing-sm);
    background-color: transparent;
}

.button {
    background-color: var(--color-primario);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #0056b3;
}



.flex-gap {
    display: flex;
    gap: 2em;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.d-block {
    display: block;
}


/*Menu Navbar*/


.menu-toggle {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: #333;
    position: absolute;
    left: 0;
    background-color: var(--color-bh);
    transition: transform 0.3s;
}

.bar:nth-child(1) {
    top: 0;
}

.bar:nth-child(2) {
    top: 8px;
}

.bar:nth-child(3) {
    top: 16px;
}

.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.active .bar:nth-child(2) {
    opacity: 0;
}

.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -6px);
}





/* Chat */


.mensaje {
    width: 65px;
    height: 65px;
    border-radius: 50px;
    background: #0dc143;
    position: fixed;
    bottom: 20px;
    right: 20px;
    /*era 15*/
    transition: bottom ease 0.5s;
    z-index: 1000;
}

.mensaje:hover {
    bottom: 33px;
}




.flecha {
    display: none;
    cursor: pointer;
	width: 65px;
	height: 65px;
	border-radius: 50px;
	background: #E5E4DF;
	position: fixed;
	bottom: 20px;
	right: 100px;
	/*era 15*/
	transition: bottom ease 0.5s;
	z-index: 1000;
}

.flecha .fc {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flecha img {
    max-width: 70%;
}

.flecha:hover {
	bottom: 33px;
}



/*Footer*/


.capsule-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.second-module .comment {
    font-family: var(--fuente-principal);
    color: var(--color-vo);
    letter-spacing: 3px;
    font-weight: 700;
}

.capsule-footer .footer-btn {
    color: var(--color-vo);
    font-weight: 500;
}

.container-footer hr {
    margin: 3.7rem 0;
}

.footer-vac-logo {
    max-width: 200px;
    margin-top: 3rem;
}

.footer-vac-logo img {
    height: auto;
    max-width: 100%;
}






/* Media query para dispositivos pequeños (sm) */
@media only screen and (min-width: 576px) {
    .container {
        max-width: 540px;
        padding: var(--espaciado-medio);
    }

    h1 {
        letter-spacing: 5px;
        font-size: 2rem;
    }

    h6 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 3rem;
    }

    h3 {
        font-size: .9rem;
    }
}

/* Media query para dispositivos medianos (md) */
@media only screen and (min-width: 768px) {

    h1 {
        letter-spacing: 6px;
        font-size: 2.75rem;
    }

    h6 {
        font-size: 2rem;
    }

    .flex-gap {
        gap: 2.5em;
    }

    .container {
        max-width: 720px;
        padding: var(--spacing-md);
    }
}

/* Media query para dispositivos grandes (lg) */
@media only screen and (min-width: 992px) {

    .flecha {
        display: block;
    }

    .desktop-el {
        display: block;
    }

    p.max-content-axis {
        max-width: 60%;
    }

    h1 {
        letter-spacing: 7px;
        font-size: 3.75rem;
    }

    h6 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 3rem;
    }

    h3 {
        font-size: 1.45rem;
    }

    .flex-gap {
        gap: 3.5em;
    }

    .container {
        max-width: 960px;
        padding: var(--spacing-xl);
    }
}

/* Media query para dispositivos extra grandes (xl) */
@media only screen and (min-width: 1200px) {

    .btn-block-02 {
        transform: scale(1.2) translate(50px, 20px);
    }

    .container {
        max-width: 1140px;
        padding: var(--spacing-xl);
    }

    .flex-gap {
        gap: 4.5em;
    }

    h1 {
        letter-spacing: 8px;
        font-size: 4.75rem;
    }

    h2 {
        font-size: 3.25rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 2.25rem;
    }

    footer {
        margin-top: 13rem;
    }
}

/* Media query para dispositivos extra extra grandes (xxl) */
@media only screen and (min-width: 1400px) {

    h1 {
        letter-spacing: 11px;
        font-size: 5.7rem;
    }

    h6 {
        font-size: 4rem;
    }

    .container {
        max-width: 1450px;
        padding: var(--spacing-xl);
    }

    footer {
        margin-top: 17rem;
    }
}