/* CSS para garantir que o banner ocupe a tela inteira sem margens */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    /* Evita rolagem horizontal */
}

/* Reset forzando para garantir Fullscreen */
.l-wrap,
.wrapArqe {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* Breakout strategy: garantir que o container do banner escape de qualquer wrapper restritivo */
.o-banner-full {
    position: relative;
    width: 100vw;
    height: 100vh;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 0 !important;
    overflow: hidden;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Garante que o slider e slides ocupem toda a altura */
.carousel-inner,
.carousel-item {
    height: 100vh !important;
    width: 100vw !important;
}

/* O artigo dentro do slide */
.c-banner-full {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

/* A imagem background */
.c-banner-full__picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 0;
    display: block;
}

.c-banner-full__picture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.c-banner-full__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* O conteúdo sobreposto */
.c-banner-full__header {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Vertical: Top and Bottom */
    padding: 15vh 6% !important;
    /* Margens: Top/Bottom e Laterais */
    background: transparent;
}

@media (min-width: 992px) {
    .c-banner-full__header {
        padding-left: 10% !important;
        padding-right: 10% !important;
    }
}

.c-banner-full__header p {
    align-self: flex-end;
    /* Horizontal: Align to Right */
    text-align: right;
    /* Multi-line text align to Right */
    max-width: 500px;
    font-family: 'Lato', sans-serif !important;
    font-weight: 300;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.c-banner-full__header h2 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Customização Premium para o Carousel */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.carousel-indicators .active {
    background-color: #fff;
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.o-banner-full:hover .carousel-control-prev,
.o-banner-full:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 50%;
    background-size: 50%;
    backdrop-filter: blur(4px);
}