/*========================== 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;
    background-image: var(--bg-desktop);
}

.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: 13% !important;
}

/*========================== TEXTOS DO BANNER (EDITOR VISUAL) ===========================*/
.vcb-rich-title, 
.vcb-rich-title p {
    color: #fff;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 10px;
    line-height: 1.1;
}

.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 ===========================*/
.vcb-floating-buttons {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 20;
    padding: 0 20px;
    box-sizing: border-box;
}

/*========================== VISUAL DOS BOTÕES ===========================*/
.vcb-btn {
    position: relative;
    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;
    flex-shrink: 0;
}

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

.vcb-isolated-button-wrapper .vcb-btn {
    position: relative;
    margin: 0 auto;
}

/*========================== ESTILOS DA GAVETA (DRAWER) ===========================*/
.vcb-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.vcb-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.vcb-drawer-content {
    width: 100%;
    max-width: 400px;
    background: #fff;
    height: 100%;
    padding: 60px 30px;
    position: relative;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.vcb-drawer-overlay.active .vcb-drawer-content {
    transform: translateX(0);
}

.vcb-drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: #2a3b45;
}

.vcb-drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vcb-drawer-menu li {
    border-bottom: 1px solid #eee;
}

.vcb-drawer-menu li a {
    display: block;
    padding: 15px 0;
    color: #2a3b45;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.vcb-drawer-menu li a:hover {
    color: #0073aa;
}

/*====================================================================
  RESPONSIVO
====================================================================*/
@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; }
}

@media (max-width: 767px) {
    .vcb-slide-bg {
        background-image: var(--bg-mobile) !important;
    }

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

    .vcb-rich-title, .vcb-rich-title p { 
        font-size: 2rem; 
    }
    .vcb-rich-subtitle, .vcb-rich-subtitle p { 
        font-size: 1.2rem; 
    }

    .vcb-floating-buttons {
        bottom: 30px !important; 
        flex-wrap: wrap !important; 
        gap: 12px !important;
        padding: 0 15px !important;
        justify-content: center !important;
    }

    .vcb-btn {
        width: calc(50% - 6px) !important; 
        max-width: 155px !important; 
        height: 90px !important; 
        padding: 10px !important;
        border-radius: 16px !important;
    }

    .vcb-btn-icon,
    .vcb-btn::after { 
        display: none !important;
    }
    
    .vcb-btn-title {
        font-size: 0.95rem !important;
        line-height: 1.2 !important;
    }
}
