/* ==================================================
   HOME
================================================== */

.section-home img {
    width: 100%;
    min-height: 350px;
    object-fit: cover;
}


/* ==================================================
   PLANOS
================================================== */

.section-plans {

    padding: 80px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 60px;
}

.planos {

    width: 100%;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 35px;
}

.card-plano {

    width: 350px;

    padding: 35px 25px;

    position: relative;

    border-radius: 24px;

    background: var(--bg-card);

    border: 1px solid var(--border-primary);

    transition: var(--transition);
}

.card-plano:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-primary);
}

.plano-anual {
    border: 1px solid #60A5FA;
}

.nome-plano {

    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 22px;
    border-radius: 999px;
    background: var(--gradient-primary);
    color: white;
    font-weight: bold;
}

.preco {

    margin-top: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 5px;
}

.preco span {

    font-size: 2.4rem;
    font-weight: bold;

    color: white;
}

.valor-extra {

    margin-top: 15px;

    text-align: center;
}

.link-contratar {

    width: 100%;
    margin-top: 30px;
    padding: 15px;
    border: none;
    border-radius: 999px;
    background: var(--gradient-primary);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-contratar:hover {

    transform: scale(1.03);

    box-shadow: var(--shadow-primary);
}

.beneficios {

    margin-top: 30px;

    display: flex;
    flex-direction: column;

    gap: 18px;
}

.beneficios p {

    display: flex;
    align-items: center;

    gap: 10px;
}

.beneficios i {
    color: #22C55E;
}

/* ==================================================
   ESTRUTURA
================================================== */

.estrutura {

    padding: 80px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 60px;
}

.salas {

    width: 100%;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 30px;
}

.modalidades {

    width: 320px;

    overflow: hidden;

    border-radius: 20px;

    background: var(--bg-card);

    border: 1px solid var(--border-primary);

    transition: var(--transition);
}

.modalidades:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-primary);
}

.modalidades img {

    height: 220px;

    object-fit: cover;
}

.modalidades p {

    padding: 20px;

    text-align: center;

    color: white;
    font-weight: bold;
}



/* ==================================================
   RESPONSIVIDADE
================================================== */

@media (max-width: 768px) {

    h2 {
        font-size: 1.7rem;
    }

    .card-plano {
        width: 100%;
    }

    .modalidades {
        width: 100%;
    }

    .aside-categories {
        width: 55vw;
    }
}