/* Seção Hero - estilo semelhante ao site do shopping */
.hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    padding: 120px 7% 90px; /* antes 60px - mais espaço pra onda */
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: 
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.90),
            rgba(0, 0, 0, 0.25)
        ),
        url('../img/institucional/vila.jpg') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    overflow: hidden;
}

/* Conteúdo principal do hero */
.hero-text {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

/* Título principal */
.hero-text h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
}

/* Texto descritivo */
.hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #f0f0f0;
}

/* Bloco de infos logo abaixo do texto */
.info-section {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 18px 30px;
    margin-bottom: 20px;
}

.info-block {
    padding: 4px 0;
    text-align: left;
}

.info-block strong {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #000000;
    margin-bottom: 2px;
    display: block;
}

.info-block p {
    margin: 0;
    font-size: 0.98rem;
    color: #ffffff;
}

/* Botão "Confira a agenda" com cara de CTA de shopping */
.info-link {
    display: inline-block;
    margin-top: 8px;
    padding: 11px 28px;
    border-radius: 999px;
    background-color: #ffc700;
    color: #222222;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

.info-link:hover {
    background-color: #a78612;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
}

/* onda */
/* Onda na parte de baixo do Hero */
.custom-shape-divider-bottom-hero {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.custom-shape-divider-bottom-hero svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px; /* ajusta se quiser maior/menor */
}

/* cor da próxima seção (fundo da seção seguinte) */
.custom-shape-divider-bottom-hero .shape-fill {
    fill: #001b24; /* se a próxima seção for branca */
}

/* 🔹 RESPONSIVIDADE */

@media (max-width: 1024px) {
    .hero {
        padding: 110px 6% 50px;
        min-height: 70vh;
    }

    .hero-text h1 {
        font-size: 2.3rem;
    }

    .hero-text p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 110px 6% 50px;
        text-align: center;
        justify-content: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .info-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .info-block {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 110px 5% 45px;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .info-link {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }
}
