/* ========================================
   ESCUELAS
======================================== */

.club {

    flex: 1;

    background:
            linear-gradient(
                    to bottom,
                    #f7f7f7,
                    #ffffff
            );

    padding: 7rem 0;
}


/* ========================================
   CONTAINER
======================================== */

.club-container {

    width: 90%;

    max-width: 920px;

    margin: auto;
}


/* ========================================
   INTRO
======================================== */

.club-intro-block {

    margin-bottom: 8rem;
}


/* SUBTITLE */

.club-subtitle {

    display: inline-block;

    color: var(--green-primary);

    font-size: 0.95rem;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 1.5rem;
}


/* TITLE */

.club-title {

    font-size: 5rem;

    font-weight: 900;

    color: var(--green-dark);

    line-height: 1;

    margin-bottom: 1.5rem;
}

.club-mini-title {

    color: var(--green-dark);

    font-size: 3rem;

    font-weight: 800;

    line-height: 1.1;

    margin-top: -0.5rem;

    margin-bottom: 2rem;
}


/* LINE */

.club-line {

    width: 95px;
    height: 5px;

    background-color: var(--green-light);

    border-radius: 30px;

    margin-bottom: 2.5rem;
}


/* INTRO TEXT */

.club-intro-text {

    font-size: 1.5rem;

    line-height: 2;

    color: #2e2e2e;

    max-width: 780px;

    font-weight: 500;
}


/* ========================================
   SECTIONS
======================================== */

.club-section {

    margin-bottom: 7rem;

    position: relative;
}


/* TITLE */

.club-section h2 {

    font-size: 3rem;

    font-weight: 800;

    color: var(--green-dark);

    margin-bottom: 2rem;

    position: relative;
}


/* SMALL ACCENT LINE */

.club-section h2::after {

    content: "";

    display: block;

    width: 60px;
    height: 4px;

    background-color: var(--green-light);

    border-radius: 30px;

    margin-top: 1rem;
}


/* TEXT */

.club-section p {

    font-size: 1.12rem;

    line-height: 2.3;

    color: #4a4a4a;

    margin-bottom: 2rem;

    text-align: left;
}


/* ========================================
   SCHOOL LINK
======================================== */

.club-section a {

    color: var(--green-primary);

    font-weight: 700;

    text-decoration: none;

    transition: 0.2s;
}

.club-section a:hover {

    color: var(--green-dark);

    text-decoration: underline;
}


/* ========================================
   QUOTE
======================================== */

.club-quote {

    margin: 7rem 0;

    padding-left: 2rem;

    border-left: 5px solid var(--green-primary);
}

.club-quote p {

    font-size: 1.7rem;

    line-height: 2;

    color: var(--green-dark);

    font-weight: 600;

    font-style: italic;
}

/* ========================================
   PROGRAMA DEPORTE ESCOLAR
======================================== */

.club-programa {

    margin-top: 6rem;

    display: flex;
    justify-content: center;
}

.club-programa img {

    max-width: 800px;

    width: 100%;

    height: auto;

    border-radius: 8px;
}

.club-programa a {

    display: inline-block;
}

.club-programa img {

    cursor: pointer;

    transition: transform 0.3s ease;
}

.club-programa img:hover {

    transform: scale(1.02);
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 768px) {

    .club {

        padding: 4rem 0;
    }

    .club-title {

        font-size: 3rem;
    }

    .club-intro-text {

        font-size: 1.2rem;
    }

    .club-section {

        margin-bottom: 5rem;
    }

    .club-section h2 {

        font-size: 2rem;
    }

    .club-section p {

        font-size: 1rem;

        line-height: 2;
    }

    .club-quote p {

        font-size: 1.3rem;

        line-height: 1.8;
    }

    .club-section a {

        width: 100%;

        justify-content: center;

        text-align: center;
    }
}