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

.btn-secundario {
    background: transparent;
    color: #0f172a;
    border-color: #e2e8f0;
}

.btn-secundario:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* ========================================
   STATS E TAGS
   ======================================== */
.banner-stats {
    margin-top: 8px;
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #475569;
    padding: 8px 16px;
    background: #f8fafc;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stat-item:hover {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transform: scale(1.02);
}

.stat-item strong {
    color: #0f172a;
    font-weight: 600;
}

.banner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #f1f5f9;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: default;
}

.tag:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tag i {
    color: #2563eb;
    font-size: 12px;
}

/* ========================================
   LINK DEMONSTRAÇÃO
   ======================================== */
.banner-demo {
    margin-top: 4px;
}

.link-demo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #eff6ff;
}

.link-demo:hover {
    background: #dbeafe;
    color: #1d4ed8;
    transform: translateX(4px);
}

.link-demo i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.link-demo:hover i {
    transform: scale(1.1);
}

/* ========================================
   COLUNA DIREITA - IMAGEM
   ======================================== */
.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;
}

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

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

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

@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;
    }
    
    .stat-item {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .tag {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .link-demo {
        font-size: 13px;
    }
}