/*========================== ESTILOS DO BANNER ===========================*/
.vcb-banner-container {
    position: relative;
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
}

.vcb-swiper {
    width: 100%;
    height: 100vh;
}

.vcb-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.vcb-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.vcb-slide-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
}

.alinjci {
    margin-left: 10% !important;
}

/*========================== TEXTOS DO BANNER (EDITOR VISUAL) ===========================*/
.vcb-rich-title, 
.vcb-rich-title p {
    color: #fff;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.vcb-rich-subtitle, 
.vcb-rich-subtitle p {
    color: #fff;
    font-weight: 100;
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 0;
}

/*========================== CONTAINER DOS BOTÕES ===========================*/
/* Ancorado no final do banner, organizando os botões com Flexbox */
.vcb-floating-buttons {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 25px; /* Espaço entre botões no desktop */
    z-index: 20;
    padding: 0 20px;
    box-sizing: border-box;
}

/*========================== VISUAL DOS BOTÕES ===========================*/
.vcb-btn {
    position: relative; /* DEVE ser relative para o flexbox controlar o layout */
    background: rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    padding: 30px 10px 40px 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 220px; /* Largura padrão desktop */
}

/* Marcador retangular na base do botão */
.vcb-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 10px;
    background-color: #2a3b45;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.vcb-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.vcb-btn-icon i {
    font-size: 2.8rem;
    color: #2a3b45;
    margin-bottom: 12px;
}

.vcb-btn-title {
    color: #2a3b45;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.3;
    margin: 0;
}

/*====================================================================
  RESPONSIVO - GRID AUTOMÁTICO E BLINDADO
====================================================================*/

/* Telas médias (Tablets) */
@media (max-width: 992px) {
    .vcb-floating-buttons {
        gap: 15px;
    }
    .vcb-btn {
        width: 180px;
    }
    .vcb-rich-title, .vcb-rich-title p { font-size: 2.5rem; }
    .vcb-rich-subtitle, .vcb-rich-subtitle p { font-size: 1.5rem; }
}

/* Mobile (Abaixo de 767px) - Grid 2x2 */
@media (max-width: 767px) {
    /* Ajustes dos textos do Banner para mobile */
    .vcb-rich-title, .vcb-rich-title p { 
        font-size: 2rem; 
    }
    .vcb-rich-subtitle, .vcb-rich-subtitle p { 
        font-size: 1.2rem; 
    }

    /* Container dos botões no mobile */
    .vcb-floating-buttons {
        bottom: 30px !important; 
        flex-wrap: wrap !important; /* Permite a quebra de linha para formar o grid */
        gap: 12px !important;
        padding: 0 15px !important;
        justify-content: center !important;
    }

    /* Botões 2x2 no mobile */
    .vcb-btn {
        width: calc(50% - 6px) !important; /* Exatos 50% menos a metade do gap */
        max-width: 155px !important; /* IMPEDE que o botão estique e fique gigante */
        height: 90px !important; /* FIXA a altura como uma caixinha */
        padding: 10px !important;
        border-radius: 16px !important;
    }

    /* Esconde ícone e marcador inferior no mobile */
    .vcb-btn-icon,
    .vcb-btn::after { 
        display: none !important;
    }
    
    /* Tipografia ajustada do botão no mobile */
    .vcb-btn-title {
        font-size: 0.95rem !important;
        line-height: 1.2 !important;
    }
}