/* ================================================
   SEÇÃO: HERO / INÍCIO (#inicio)
================================================ */

#inicio {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#cta {
    max-width: 600px;
}

#cta .title {
    font-family: "Cinzel Decorative", serif;
    font-size: 5.7rem;
    color: #ffffff;
    white-space: nowrap;
    line-height: 1.1;
}

#cta .title .cidade {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    opacity: 0.9;
    white-space: normal;
}

#cta .description {
    font-size: 19px;
    line-height: 1.1;
    color: #ffffff;
    max-width: 89%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ================================================
   BOTÕES CTA
================================================ */

#cta_buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

#cta_buttons a {
    text-decoration: none;
    color: #1d1d1d;
}

#phone_button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    padding: 8px 14px;
    font-weight: 500;
    border-radius: 12px;
    box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.1);
    color: #1d1d1d;
    text-decoration: none;
}

#phone_button button {
    background-color: #ecbe5c;
    box-shadow: none;
    border-radius: 8px;
    color: #fff;
}

/* ================================================
   REDES SOCIAIS
================================================ */

.social-media-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.social-media-buttons a {
    width: 40px;
    height: 40px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================
   RESPONSIVO — MOBILE (max 768px)
================================================ */

@media (max-width: 768px) {

    #inicio {
        position: relative;
        min-height: 100svh;
        padding-top: 90px;
        padding-bottom: 40px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Overlay escuro sobre o vídeo para legibilidade */
    #inicio::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.72) 0%,
                rgba(0, 0, 0, 0.3) 50%,
                rgba(0, 0, 0, 0.1) 100%);
        z-index: 1;
    }

    #inicio .video-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        min-height: calc(100svh - 90px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 24px;
        text-align: center;
    }

    #cta {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    #cta .title {
        font-size: 3.3rem;
        line-height: 1;
        letter-spacing: 1px;
        margin-bottom: 12px;
        white-space: normal;
        text-align: center;
        text-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
    }

    #cta .title .cidade {
        display: block;
        font-size: 1rem;
        letter-spacing: 2px;
        opacity: 0.9;
        margin-bottom: 14px;
        text-transform: uppercase;
    }

    #cta .description {
        font-size: 1rem;
        line-height: 1.6;
        opacity: 0.95;
        margin: 0 auto 28px;
        max-width: 39ch;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    }

    #cta_buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 1px;
        margin-bottom: 24px;
        width: 100%;
    }

    /* Botões principais */
    #cta_buttons a,
    #cta_buttons .btn-default {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: 1rem;
        padding: 14px 18px;
        border-radius: 14px;
    }

    /* Botão telefone */
    #phone_button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;

        width: 100%;
        max-width: 300px;
        height: 60px;
        /* diminui a altura */

        padding: 0 20px;
        border-radius: 14px;

        font-size: 1rem;
        font-weight: 500;
        white-space: nowrap;
    }

    /* Caixa do ícone */
    #phone_button .btn-default {
        width: 45px;
        height: 45px;
        min-width: 48px;

        padding: 0;
        border-radius: 12px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    #phone_button i {
        font-size: 1rem;
    }

    /* iPhones menores */
    @media (max-width: 360px) {

        #cta .title {
            font-size: 2.7rem;
        }

        #cta .title .cidade {
            font-size: 0.9rem;
        }

        #cta .description {
            font-size: 0.95rem;
        }
    }}