/*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: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

.underline {
    text-decoration: underline;
}
.color-link {
    color: #FF914C;
}

/* fuente artística */

/* fuente general */

.Montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
/*tipografía*/

.title {
    font-family: "Montserrat", sans-serif;
    font-size: 64px;
    font-weight: 700;
}

.subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 500;
}

.subtitle2 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.body {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

.body-sm {
    font-family: "Montserrat", 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;
}

.light {
    color: #FAF1E8;
}

.white{
    color: #fff;
}
.color{
    color: #FF914C;
}

/* alineacion */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

/*botones*/
.btn {
    color: black;
    background-color: #FAF1E8;
    padding: 12px 12px;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    box-sizing: content-box;
    border: none;
}

.btn-secondary {
    color: black;
    border: #000 1px solid;
}

.btn:hover {
    background-color: #FF914C;
}

@media (max-width:767px) {
    .btn-primary {
        font-size: 12px;
        width: 100%;
        max-width: 300px;
    }

    .btn-secondary {
        font-size: 12px;
    }
}




/* SECCIONES Y CONTENTS */
.section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content {
    width: 100%;
    max-width: 1280px;
    padding: 112px 100px;
    display: flex;
    align-items: start;
}
@media(max-width: 880px) {
    .section {
    }
    .content{
        flex-wrap: wrap;
        padding: 80px 20px;
    }
    .height-100vh{
        height: auto;
    }
} 
.height-100vh {
    height: 100vh;
}
.gap-80 {
    gap: 80px;
}
.gap-40 {
    gap: 40px;
}
.gap-20 {
    gap: 20px;
}
.gap-10 {
    gap: 10px;
}

.w-100{
    width: 100%;
}
.h-100{
    height: 100%;
}
.h-100vh{
    min-height: 100vh;
}




.radius-30{
    border-radius: 30px;
}

/* display */
.flex {
    display: flex;
}
.column {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.start{
    align-items: start;
}
.center {
    justify-content: center;
    align-items: center;
}
.end{
    align-items: end;
}

.between {
    justify-content: space-between;
}

.wrap {
    flex-wrap: wrap;
}
.align-center{
    align-items: center;
}
/* combinaciones flexbox */
.flex-column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* STYLE */
/* aviso-de-desarrollo */
.aviso-de-desarrollo {
    background-color: yellow;
    padding: 20px;
    font-weight: bold;
}


.yellow{
    background-color: yellow;
}