/* PRIVACY POLICY SECTION */
.privacy-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f0f4f0, #e8ede6);
}

.privacy-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.privacy-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.privacy-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 1rem;
}

.privacy-header h1 span {
    color: #e67e22;
}

.privacy-header > p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    color: #7f8c6d;
    line-height: 1.6;
}

/* Intro Box */
.privacy-intro {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid #e67e22;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.privacy-intro p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-intro strong {
    color: #e67e22;
}

/* Grid */
.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

/* Cards */
.privacy-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    transition: all 0.3s ease;
    border: 1px solid #e8e0d5;
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #e67e22;
}

.privacy-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.privacy-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 0.8rem;
}

.privacy-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #7f8c6d;
}

/* Lista dentro de tarjeta */
.privacy-list {
    padding-left: 1.2rem;
    margin-top: 0.8rem;
}

.privacy-list li {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #7f8c6d;
    margin-bottom: 0.5rem;
}

/* Tags */
.privacy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.privacy-tags span {
    background: #fef2e6;
    color: #e67e22;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

.privacy-subtext {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px dashed #f0e6db;
    font-style: italic;
}

/* Alert */
.privacy-alert {
    background: rgba(230, 126, 34, 0.08);
    border-left: 4px solid #e67e22;
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.privacy-alert span {
    font-size: 1.8rem;
}

.privacy-alert strong {
    color: #2c3e2f;
}

.privacy-alert div {
    color: #7f8c6d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer Buttons */
.privacy-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-privacy {
    background: #e67e22;
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.btn-privacy:hover {
    background: #cf711f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

.btn-privacy-outline {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #5a4a3a;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-privacy-outline:hover {
    border-color: #e67e22;
    color: #e67e22;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .privacy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 3rem 1.5rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .privacy-card {
        padding: 1.5rem;
    }
    
    .privacy-intro {
        padding: 1.5rem;
    }
    
    .privacy-alert {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-footer {
        gap: 1rem;
    }
    
    .btn-privacy, .btn-privacy-outline {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 1.6rem;
    }
    
    .privacy-header > p {
        font-size: 0.85rem;
    }
    
    .privacy-tags span {
        font-size: 0.6rem;
    }
}