
/* ============================================
   ESTILOS ESPECÍFICOS - PÁGINA DE PRIVACIDAD
   ============================================ */

/* HERO SECTION DE PRIVACIDAD */
.privacy-hero {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-top: 80px;
}

.privacy-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.privacy-hero .hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

/* CONTENIDO PRINCIPAL */
.privacy-content {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.privacy-content .container {
    max-width: 900px;
    margin: 0 auto;
}

/* SECCIONES DE PRIVACIDAD */
.privacy-section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #ff6b35;
    transition: all 0.3s ease;
}

.privacy-section:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.privacy-section h2 {
    color: #1a3a52;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8e8e8;
}

.privacy-section h3 {
    color: #2d5a7b;
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-section h4 {
    color: #2d5a7b;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.privacy-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* LISTAS */
.privacy-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.privacy-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.privacy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CAJAS DESTACADAS */
.highlight-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 4px solid #ff6b35;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-style: italic;
    color: #d84315;
    font-weight: 500;
}

.address-box {
    background: #f0f4f8;
    border: 2px solid #2d5a7b;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}

.address-box p {
    margin-bottom: 20px;
    color: #1a3a52;
}

.address-box p:last-child {
    margin-bottom: 0;
}

.data-box {
    background: #f8f9fa;
    border: 2px dashed #ff6b35;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.data-box ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.data-box li {
    padding-left: 25px;
    position: relative;
    color: #555;
}

.data-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 1.5rem;
}

.contact-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #1976d2;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}

.contact-box p {
    color: #1565c0;
    font-size: 1.1rem;
    margin: 0;
}

.limitation-box {
    background: #f5f5f5;
    border: 2px solid #2d5a7b;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}

.limitation-box h4 {
    color: #ff6b35;
    margin-top: 0;
}

.important-text {
    background: #ffebee;
    border-left: 4px solid #c62828;
    padding: 15px;
    border-radius: 4px;
    color: #b71c1c;
    font-weight: 600;
}

.note-box {
    background: #fff9c4;
    border-left: 4px solid #fbc02d;
    padding: 15px;
    border-radius: 4px;
    color: #f57f17;
    font-weight: 500;
    margin: 20px 0 !important;
}

/* SECCIÓN FINAL */
.final-section {
    text-align: center;
    border: none;
    border-top: 3px solid #ff6b35;
    padding-top: 40px;
}

.cta-box {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-top: 30px;
}

.cta-box h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-box p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-box .cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 12px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-box .cta-button:hover {
    background: #e55a25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .privacy-hero .hero-content h1 {
        font-size: 2rem;
    }

    .privacy-hero .hero-content p {
        font-size: 1rem;
    }

    .privacy-section {
        padding: 25px;
        margin-bottom: 20px;
    }

    .privacy-section h2 {
        font-size: 1.4rem;
    }

    .data-box ul {
        grid-template-columns: 1fr;
    }

    .address-box {
        padding: 15px;
    }

    .cta-box {
        padding: 25px;
    }

    .cta-box h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 30px 15px;
    }

    .privacy-section {
        padding: 20px;
        border-left-width: 3px;
    }

    .privacy-section h2 {
        font-size: 1.2rem;
    }

    .privacy-section p {
        font-size: 0.95rem;
    }

    .privacy-list li {
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .highlight-box {
        padding: 15px;
    }

    .cta-box .cta-button {
        padding: 10px 30px;
        font-size: 0.95rem;
    }
}