/* === LAYOUT GERAL === */
body {
    padding-top: 50px;
    /* espaço para o cabeçalho fixo */
}

/* === CABEÇALHO FIXO === */
.cabecalho-fixo {
    z-index: 1050;
}

.logo-central {
    position: sticky;
    top: 50px;
    background-color: #c82333;
    text-align: center;
    z-index: 1020;
    border-bottom: 1px solid #eee;
}

/* === CORES PERSONALIZADAS === */
.bg-drogamais {
    background-color: #c82333;
}

.text-drogamais {
    color: #c82333;
}

/* === BOTÃO VOLTAR AO TOPO === */
.btn-voltar-topo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #c82333;
    color: white;
    font-size: 1.5rem;
    padding: 10px;
    z-index: 999;
    display: none;
    transition: opacity 0.3s ease;
}

.btn-voltar-topo:hover {
    opacity: 0.8;
}

/* === ÍCONES DO MENU COM TEXTO === */
.menu-icon {
    font-size: 2rem;
    color: #c82333;
}

.menu-label {
    font-weight: bold;
    color: #c82333;
}

.section-icones .row {
    justify-content: center;
    text-align: center;
}


/* === BOTÕES PERSONALIZADOS === */
.btn-instagram {
    background-color: #E1306C;
    color: white;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

/* === SEÇÕES COM IMAGEM DE FUNDO === */
.section-bg {
    background-size: cover;
    background-position: center;
    color: white;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
}

.fundo-transparente {
    background-color: rgba(0, 0, 0, 0.5);
    /* preto com 50% de transparência */
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    color: white;
}


/* === BANNER DE OFERTAS COM CARROSSEL === */
.banner-ofertas {
    position: relative;
    height: 700px;
    overflow: hidden;
    margin-bottom: 40px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slideFade 10s infinite;
}

.banner-slide:nth-child(1) {
    background-image: url('../images/banner_site_tabloide_setembro_2025_desktop_02.jpg');
    animation-delay: 0s;
}

.banner-slide:nth-child(2) {
    background-image: url('../images/banner_site_campanha_supravigor_drogamais_est_02.jpg');
    animation-delay: 5s;
}

@keyframes slideFade {

    0%,
    45% {
        opacity: 1;
    }

    50%,
    95% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

.banner-content-top h3 {
    font-size: 2.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    animation: pulse 2s infinite;
}

.banner-content-top a.btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #c82333;
    font-weight: bold;
    border-radius: 8px;
    padding: 8px 16px;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* === INDICADORES DO CARROSSEL === */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 35%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #ffffff;
    box-shadow: 0 0 0 2px #c82333;
}

/* === REDES SOCIAIS === */
.redes-sociais a i {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}