/* Estilos CSS para el Widget HTML Personalizable */

/* Contenedor principal del widget */
.html-widget-custom-content {
    padding: 15px;
    border-radius: 5px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
}

/* Estilos para información de contacto */
.html-widget-custom-content .info-contacto {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.html-widget-custom-content .info-contacto h4 {
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #007cba;
    padding-bottom: 5px;
}

.html-widget-custom-content .info-contacto ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.html-widget-custom-content .info-contacto li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.html-widget-custom-content .info-contacto li:last-child {
    border-bottom: none;
}

/* Estilos para promociones */
.html-widget-custom-content .promocion {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 15px;
}

.html-widget-custom-content .promocion h3 {
    color: white;
    margin-bottom: 10px;
}

.html-widget-custom-content .promocion .btn {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.html-widget-custom-content .promocion .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Estilos para horarios */
.html-widget-custom-content .horarios {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #007cba;
}

.html-widget-custom-content .horarios h4 {
    color: #333;
    margin-bottom: 15px;
}

.html-widget-custom-content .horarios table {
    width: 100%;
    border-collapse: collapse;
}

.html-widget-custom-content .horarios td {
    padding: 8px 12px;
    border-bottom: 1px solid #f0f0f0;
}

.html-widget-custom-content .horarios td:first-child {
    font-weight: bold;
    color: #666;
}

/* Estilos para contacto general */
.html-widget-custom-content .contacto {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.html-widget-custom-content .contacto h3 {
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.html-widget-custom-content .contacto p {
    margin-bottom: 10px;
    padding: 5px 0;
}

.html-widget-custom-content .contacto strong {
    color: #007cba;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .html-widget-custom-content {
        padding: 10px;
    }
    
    .html-widget-custom-content .info-contacto,
    .html-widget-custom-content .promocion,
    .html-widget-custom-content .horarios,
    .html-widget-custom-content .contacto {
        padding: 15px;
    }
    
    .html-widget-custom-content .horarios table {
        font-size: 14px;
    }
    
    .html-widget-custom-content .horarios td {
        padding: 6px 8px;
    }
}

/* Animaciones suaves */
.html-widget-custom-content {
    transition: all 0.3s ease;
}

.html-widget-custom-content:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
