/* Banner Background Image Styles - VERSÃO CORRIGIDA SEM QUEBRAR O LAYOUT */
.promo-banner {
    position: relative;
    height: 500px;
    background-image: url('../images/banner-3.png');
    background-size: cover;
    background-position: center 20%; /* Posiciona para mostrar a parte superior da imagem */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.banner-text {
    font-family: 'Inter', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.banner-text h2.highlight {
    font-size: 56px;
    margin-bottom: 20px;
}

.ampersand {
    font-size: 64px;
    font-weight: 300;
    opacity: 0.8;
    margin: 15px 0;
    font-style: italic;
}

.banner-text p {
    font-size: 24px;
    margin: 10px 0;
    font-weight: 500;
}

.banner-text p.highlight-text {
    font-size: 28px;
    font-weight: 700;
    margin-top: 20px;
}

/* Responsive Design - CORRIGIDO PARA EVITAR CORTES */
@media (max-width: 768px) {
    .promo-banner {
        height: 400px;
        background-image: url('../images/banner-mobile.png');
        background-size: cover;
        background-position: center 15%; /* Posiciona para mostrar a parte superior */
        background-repeat: no-repeat;
    }

    .banner-text h2 {
        font-size: 32px;
    }

    .banner-text h2.highlight {
        font-size: 36px;
    }

    .ampersand {
        font-size: 40px;
    }

    .banner-text p {
        font-size: 18px;
    }

    .banner-text p.highlight-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        height: 350px;
        background-image: url('../images/banner-mobile.png');
        background-size: cover;
        background-position: center 10%; /* Posiciona para mostrar a parte superior */
        background-repeat: no-repeat;
    }

    .banner-text h2 {
        font-size: 24px;
    }

    .banner-text h2.highlight {
        font-size: 28px;
    }

    .ampersand {
        font-size: 32px;
    }

    .banner-text p {
        font-size: 16px;
    }

    .banner-text p.highlight-text {
        font-size: 18px;
    }
}

@media (max-width: 374px) {
    .promo-banner {
        height: 300px;
        background-image: url('../images/banner-mobile.png');
        background-size: cover;
        background-position: center 5%; /* Posiciona para mostrar a parte superior */
        background-repeat: no-repeat;
    }
}

/* ========================================
   ALTERNATIVA COM BACKGROUND-SIZE: CONTAIN (SE PREFERIR)
   ======================================== */

/* Descomente estas linhas se preferir usar contain em vez de cover */
/*
.promo-banner {
    background-size: contain;
    background-position: center top;
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .promo-banner {
        background-size: contain;
        background-position: center top;
        background-color: #f8f9fa;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        background-size: contain;
        background-position: center top;
        background-color: #f8f9fa;
    }
}

@media (max-width: 374px) {
    .promo-banner {
        background-size: contain;
        background-position: center top;
        background-color: #f8f9fa;
    }
}
*/
