.elementor-1093 .elementor-element.elementor-element-c96bf5f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-9c35d4e *//* Estilo unificado para IlumaCabinet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif; /* Usamos Roboto para el texto legal por legibilidad */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px;
    color: #444;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

/* Encabezado */
.header {
    background: linear-gradient(135deg, #586483 0%, #3d4659 100%);
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.header h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hologram-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Contenido Principal */
.content {
    padding: 50px 40px;
}

.last-updated {
    background: #f0f4f8;
    padding: 20px;
    border-left: 5px solid #586483;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.acceptance-box {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #c8e6c9;
    color: #2e7d32;
    margin-bottom: 40px;
    text-align: center;
}

.section {
    margin-bottom: 40px;
    animation: fadeIn 0.6s ease-out forwards;
}

.section h2 {
    font-family: 'Roboto Condensed', sans-serif;
    color: #586483;
    font-size: 1.8rem;
    border-bottom: 2px solid #586483;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section h3 {
    color: #3d4659;
    margin: 20px 0 10px 0;
}

.section p {
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

/* Listas con icono personalizado */
.section ul {
    list-style: none;
    margin-bottom: 20px;
}

.section li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #586483;
    font-weight: bold;
}

/* Cuadros Destacados (Glow) */
.highlight {
    background: #fff8e1;
    padding: 20px;
    border-left: 5px solid #ffa726;
    border-radius: 8px;
    margin: 20px 0;
}

/* Contacto y Pie */
.contact-box {
    background: #586483;
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 50px;
}

.footer {
    background: #f8f9fa;
    padding: 30px;
    text-align: center;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #888;
}

/* Animaciones */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .content { padding: 30px 20px; }
    .header h1 { font-size: 2.2rem; }
}/* End custom CSS */