.elementor-1064 .elementor-element.elementor-element-39a9839{--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;}.elementor-1064 .elementor-element.elementor-element-5f636a1{--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-021da46 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px;
}

.privacy-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: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.privacy-header {
    background: linear-gradient(135deg, #586483 0%, #667591 50%, #586483 100%);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5rem;
    color: #e8ecf3;
}

.last-updated {
    font-size: 1rem;
    color: #d4dae6;
}

.privacy-content {
    padding: 50px 40px;
}

.privacy-section {
    margin-bottom: 40px;
    /* Eliminamos opacity 0 para asegurar que se vea si falla el JS/animación */
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #586483;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #586483;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
}

.privacy-list {
    list-style: none;
    margin-top: 10px;
}

.privacy-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    color: #4a5568;
}

.privacy-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #586483;
    font-weight: bold;
}

.info-box, .contact-box {
    background: #f0f4f8;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #586483;
}

.email-link {
    color: #2193b0;
    text-decoration: none;
    font-weight: bold;
}

.privacy-footer {
    background: #586483;
    padding: 20px;
    text-align: center;
    color: white;
}/* End custom CSS */