/*suavisa las animaciones de scroll al hacer click en un link*/
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*fuente general*/
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

.underline {
    text-decoration: underline;
}
.color-link {
    color: #AA2F26;
}

/*tipografía*/
.title {
    font-family: "Rubik", sans-serif;
    font-size: 64px;
    font-weight: 700;
}

.subtitle {
    font-family: "Rubik", sans-serif;
    font-size: 32px;
    font-weight: 500;
}

.subtitle2 {
    font-family: "Rubik", sans-serif;
    font-size: 22px;
    font-weight: 600;
}

.body {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.body-sm {
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/*fuente en media mobile */
@media (max-width:767px) {
    .title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .subtitle2 {
        font-size: 14px;
    }

    .body {
        font-size: 14px;
    }

    .body-sm {
        font-size: 12px;
    }
}

/*weights*/
.regular {
    font-weight: 400;
}

.medium {
    font-weight: 500;
}

.semi-bold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.extra-bold {
    font-weight: 800;
}


/*styles*/
.italic {
    font-style: italic;
}

/*colores de fuente*/
.principal {
    color: #000;
}

.white {
    color: #ffff;
}

/* alineacion */
.center {
    text-align: center;
}

.right {
    text-align: right;
}

.justify {
    text-align: justify;
}

/*botones*/
.btn {
    background-color: #AA2F26;
    color: #ffff;
    padding: 12px 12px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    box-sizing: inherit;
}

.btn-secondary {
    background-color: #a6aab3;
}

.btn:hover {
    background-color: #7b211b;
}

@media (max-width:767px) {
    .btn-primary {
        font-size: 12px;
        width: 100%;
        max-width: 300px;
    }

    .btn-secondary {
        font-size: 12px;
    }
}

/* display */
.flex {
    display: flex;
}

.flex-center {
    display: flex ;
    justify-content: center;
    align-items: center;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wrap {
    flex-wrap: wrap;
}

/* SECCIONES Y CONTENTS */
.section {
    width: 100%;
    padding: 0 100px;

}

.content {
    width: 100%;
    max-width: 1280px;
}
.height-100vh {
    height: 100vh;
}
.gap-40 {
    gap: 40px;
}
.gap-20 {
    gap: 20px;
}
@media(max-width: 880px) {
    .section {
        padding: 80px 40px;
    }
    .content{
        flex-wrap: wrap;
    }
    .height-100vh{
        height: auto;
    }
} 
/* STYLE */
/* aviso-de-desarrollo */
.aviso-de-desarrollo {
    background-color: yellow;
    padding: 20px;
    font-weight: bold;
}


