:root {
    --cormorant: "Cormorant";
    --poppins: "Poppins";
    --verde: #234D39;
    --verde-oscuro: #202F28;
    --crema: #EDEDE8;
    --alto-ventana: 100vh;
}


a *,
button *{
    pointer-events: none;
}


body {
    margin: 0;
    font-family: var(--poppins);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--verde-oscuro);
    text-align: left;
    background-color: white;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    font-family: var(--cormorant);
    line-height: 1.25;
    font-weight: bold;
}

h1 {
    font-size: 32px;
}


h2 {
    font-size: 22px;
}

@media (min-width: 992px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 36px;
    }
}


@media (min-width: 992px) {
    body {
        font-size: 16px;
    }
}


/* Botones */

.btn {
    padding: 0 30px;
    border-radius: 0;


    position: relative;
    display: flex;
    border: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    background: transparent;
    color: #fff;
    height: 40px;
    justify-content: center;


    font-size: 20px;
    font-style: italic;
    font-weight: bold;
    font-family: var(--cormorant);

}

.btn:disabled {
    opacity: 0.5;
}

.btn-primary,
.btn-primary:disabled {
    background: var(--verde);
    color: white;
    border: none;
}


.btn-link,
.btn-link:disabled {
    background: transparent;
    font-family: var(--poppins);
    color: var(--verde);
    border: none;
    font-style: normal;
    font-weight: normal;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.btn-link:hover {
    color: #6E9281;

}


.btn-dark,
.btn-dark:disabled {
    background: var(--verde-oscuro);
    color: white;
    border: none;
}


.btn:focus-visible,
:not(.btn-check) + .btn:active {
    background: transparent;
    color: var(--verde);
    border: none;
    box-shadow: none;
}


.btn-primary:hover {
    background: var(--verde);
    color: white;
    border: none;
    box-shadow: none;
}

.btn-dark:hover {
    background: var(--verde-oscuro);
    color: white;
    border: none;
    box-shadow: none;
}


.btn-primary:hover .texto {
    color: var(--verde);
}

.btn-dark:hover .texto {
    color: var(--verde-oscuro);
}


.btn .animacion {
    background: var(--crema);
    width: 100%;
    height: 40px;
    line-height: 40px;
    position: absolute;
    transition: all 0.3s ease-Out;
    bottom: -100%;
    left: 0;
}

.btn:hover .animacion {
    bottom: 0;
    left: 0;
}

.btn .texto {
    text-align: center;
    position: relative;
    display: block;
    height: 40px;
    line-height: 40px;
}


/* Formularios*/


.etiqueta-error {
    margin-top: 6px;
    font-size: 12px;
    color: #BB8B78;
}

.form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #47564F;
    padding: 8px;
    background: transparent;
}

.form-control::placeholder {
    color: #6F7C76;
}

.form-control:focus {
    background: transparent;
    border-color: #47564F;
    outline: 0;
    box-shadow: none;
}


.button-wsp{
    position: fixed; 
    z-index: 999999;  bottom: 0;
    right: 0;
    border: 15px solid transparent;
}

.button-wsp:hover {
    opacity: 0.7;
  }

