/*========================== ESTILOS DO BANNER ===========================*/
.vcb-banner-container {
    position: relative;
    width: 100%;
    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.0);
}

.vcb-slide-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
}

.alinjci { margin-left: 13% !important; }

.vcb-rich-title, .vcb-rich-title p {
    color: #fff; font-weight: 500; 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;
}

/*========================== BOTÕES ===========================*/
.vcb-floating-buttons {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 25px; 
    z-index: 20;
    padding: 0 20px;
    box-sizing: border-box;
}

.vcb-btn {
    position: relative; 
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 30px 10px 40px 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 220px; 
}

.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);
}

/* Container do Ícone */
.vcb-btn-icon {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.vcb-btn-icon i {
    font-size: 2.8rem;
    color: #2a3b45;
}

/* Estilo para ícone de imagem */
.vcb-custom-icon {
    max-width: 50px;
    max-height: 50px;
    height: auto;
    object-fit: contain;
}

.vcb-btn-title {
    color: #2a3b45; font-weight: 500; font-size: 1.05rem; line-height: 1.3; margin: 0;
}

/*========================== RESPONSIVO ===========================*/
@media (max-width: 992px) {
    .vcb-btn { width: 180px; }
    .vcb-rich-title { font-size: 2.5rem; }
}

@media (max-width: 767px) {
    .vcb-floating-buttons { bottom: 30px !important; flex-wrap: wrap !important; gap: 12px !important; }
    .vcb-btn { width: calc(50% - 6px) !important; max-width: 155px !important; height: 90px !important; padding: 10px !important; }
    .vcb-btn-icon, .vcb-btn::after { display: none !important; }
    .vcb-btn-title { font-size: 0.95rem !important; }
}