/* ===========================
   GLOBAL STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    line-height: 1.6;
    background: linear-gradient(to right, var(--color-white-200), var(--color-white-100));
    max-width: 100vw;
}

/* Container */
.margin-default {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* ==================== BACKGROUNDS ==================== */

.bg-white {
    background-color: var(--color-white-100);
}

.bg-light {
    background-color: var(--color-white-200);
}

.bg-blue {
    background-color: var(--color-blue-700);
}

/* ===================={ TEXT }==================== */

.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.text-uppercase {
    text-transform: uppercase;
}

.font-bold {
    font-weight: bold;
}

.negrito {
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0 auto;
    text-align: justify;
    font-weight: 600;
}

.color-white {
    color: white;
}

.blue-text {
    color: var(--color-btn-default);
}

.gray-text {
    color: var(--color-gray-600);
}

/* ===================={ FONTS }==================== */

.font-black {
    color: black;
}

.font-spartan {
    font-family: 'League Spartan', sans-serif;
}

.font-garet {
    font-family: 'Garet', sans-serif;
}


/* ===================={ UTILITY CLASSES }==================== */
.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-2 {
    margin-top: 2rem;
}

.p-6 {
    padding: 6rem;
}

.p-2 {
    padding: 2rem;
}

.pt-2 {
    padding-top: 2rem;
}

.click {
    cursor: pointer;
}

.cursor-none {
    cursor: auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-blue-700);
    font-weight: bold;
}

.section-title-mb {
    font-size: 3.25rem;
    color: var(--color-blue-700);
    font-weight: bold;
}

/* ===================={ MEDIA QUERY }==================== */

/* MOBILE LARGE - 768px */
@media (max-width: 768px) {
    .section-title-mb {
        font-size: 2rem;
    }


    .section-title {
        font-size: 2.25rem;
    }

    .p-6 {
        padding: 3rem;
    }
}

@media (max-width: 620px) {
    .margin-default {
        width: 90%;
    }

    .benefits-section-wrapper {
        min-height: 1600px;
    }

    .grid-col-2 {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .p-6 {
        padding: 2rem;
    }

    .section-subtitle {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    .section-title {
        font-size: 1.5rem;
    }

    .margin-default {
        width: 92%;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }
}