/* ========================================
   BANNER PRINCIPAL
   ======================================== */
.banner-principal {
    padding: 40px 40px 60px;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.banner-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ========================================
   COLUNA ESQUERDA - TEXTO
   ======================================== */
.banner-texto {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.banner-titulo {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin: 0;
    letter-spacing: -1px;
}

.banner-titulo span {
    color: #2563eb;
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.banner-titulo span:hover {
    color: #1d4ed8;
    transform: scale(1.02);
    text-shadow: 0 2px 20px rgba(37, 99, 235, 0.15);
}

.banner-descricao {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    max-width: 540px;
    margin: 0;
    transition: all 0.4s ease;
}

.banner-descricao:hover {
    color: #0f172a;
}

/* ========================================
   BOTÕES DO BANNER
   ======================================== */
.banner-botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.btn-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primario {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-primario:hover {
    background: #1d4ed8;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.btn-primario:active {
    transform: translateY(0) scale(0.98);
}

/* ========================================
   CARROSSEL DE IMAGENS
   ======================================== */
.banner-imagem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-imagem-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
}

.banner-imagem-wrapper:hover {
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.12);
    transform: scale(1.01) translateY(-4px);
    border-color: #e2e8f0;
}

/* Slides */
.carrossel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.ativo {
    display: block;
    animation: fadeSlide 0.8s ease-in-out;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.banner-imagem-wrapper:hover .banner-img {
    transform: scale(1.02);
}

/* Overlay */
.banner-imagem-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(37, 99, 235, 0.06) 100%);
    border-radius: 20px;
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.banner-imagem-wrapper:hover .banner-imagem-overlay {
    opacity: 1;
}

/* ========================================
   INDICADORES DO CARROSSEL
   ======================================== */
.carrossel-indicadores {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicador {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicador:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.indicador.ativo {
    background: #2563eb;
    border-color: #2563eb;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 1024px) {
    .banner-container {
        gap: 40px;
    }
    
    .banner-titulo {
        font-size: 38px;
    }
    
    .banner-descricao {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .banner-principal {
        padding: 24px 24px 40px;
    }
    
    .banner-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .banner-texto {
        order: 1;
    }
    
    .banner-imagem {
        order: 0;
    }
    
    .banner-titulo {
        font-size: 32px;
    }
    
    .banner-descricao {
        font-size: 16px;
        max-width: 100%;
    }
    
    .banner-botoes {
        gap: 12px;
    }
    
    .btn-banner {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .banner-imagem-wrapper {
        max-width: 100%;
    }
    
    .carrossel-indicadores {
        bottom: 15px;
    }
    
    .indicador {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .banner-principal {
        padding: 16px 16px 32px;
    }
    
    .banner-titulo {
        font-size: 26px;
    }
    
    .banner-descricao {
        font-size: 15px;
    }
    
    .btn-banner {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
    
    .banner-botoes {
        flex-direction: column;
    }
    
    .carrossel-indicadores {
        bottom: 10px;
        gap: 8px;
    }
    
    .indicador {
        width: 8px;
        height: 8px;
    }
}