/* CSS Document */

.promo-banner-insac {
    /* Gradiente moderno que emula la est?tica de la plantilla cargada */
    background: linear-gradient(135deg, #4c0519 0%, #1e1b4b 60%, #312e81 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
}
.promo-banner-content {
    padding: 40px;
    z-index: 2;
}
.promo-banner-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.promo-banner-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    font-weight: 600;
}
/* Estilo exacto del bot?n con el icono circular integrado */
.btn-promo-shop {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: var(--insac-dark) !important;
    font-weight: 800;
    font-size: 14px;
    padding: 8px 8px 8px 24px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}
.btn-promo-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-promo-shop .icon-circle {
    width: 32px;
    height: 32px;
    background: var(--insac-primary); /* Utiliza el color primario de tu paleta actual */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    font-size: 12px;
}
/* Contenedor e imagen del producto del lado derecho */
.promo-banner-img-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.promo-banner-img-container img {
    max-height: 280px;
    object-fit: contain;
    transform: scale(1.1) rotate(-5deg); /* Ligera inclinaci?n para emular la est?tica comercial */
    transform-origin: center right;
    transition: transform 0.5s ease;
}
.promo-banner-insac:hover .promo-banner-img-container img {
    transform: scale(1.15) rotate(-3deg);
}
/* Ajustes responsivos para que en m?viles la imagen no colisione con el texto */
@media (max-width: 767px) {
    .promo-banner-insac {
        text-align: center;
    }
    .promo-banner-content {
        padding: 40px 20px;
    }
    .promo-banner-title {
        font-size: 26px;
    }
    .btn-promo-shop {
        justify-content: center;
    }
    .promo-banner-img-container {
        justify-content: center;
        padding-bottom: 20px;
        overflow: hidden;
    }
    .promo-banner-img-container img {
        transform: scale(1) rotate(0deg);
        max-height: 180px;
    }
}
		
		
		
		