/* 

1. Add your custom Css styles below
2. Place the this code in your template: 

 <link href="css/custom.css" rel="stylesheet">

*/
.social-icons.social-icons-colored .social-whatsapp a, .social-icons.social-icons-colored-hover .social-whatsapp a:hover { background-color: #54da2b; }

/* Estilos para la sección promocional */
.highlight-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.border-left-primary {
    border-left-color: #007bff !important;
}

.p-l-30 {
    padding-left: 30px;
}

/* Estilos para el popover promocional */
.promo-popover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.promo-popover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
}

.promo-popover-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: popoverSlideIn 0.5s ease-out;
}

.promo-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-close:hover {
    color: #333;
    transform: scale(1.1);
}

.promo-text {
    padding-left: 20px;
}

.promo-text h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.promo-text .lead {
    font-size: 16px;
    margin-bottom: 15px;
}

.promo-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

body.popover-open {
    overflow: hidden;
}

@keyframes popoverSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 768px) {
    .p-l-30 {
        padding-left: 15px;
        margin-top: 30px;
    }
    
    .promo-popover-content {
        width: 95%;
        padding: 20px;
        max-height: 90vh;
    }
    
    .promo-text {
        padding-left: 0;
        margin-top: 20px;
    }
    
    .promo-text h2 {
        font-size: 20px;
    }
    
    .promo-close {
        top: 10px;
        right: 15px;
        font-size: 25px;
    }
}