/* TicBoom legal pages — estilos extraídos de privacy.html y terms.html */

.privacy-container,
.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    margin-top: 80px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.privacy-container::before,
.terms-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
    animation: shimmer 3s infinite linear;
}

.privacy-header,
.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.05), rgba(255, 107, 157, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(233, 69, 96, 0.1);
}

.privacy-title,
.terms-title {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-accent);
    background: linear-gradient(45deg, var(--accent-color), var(--highlight-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.privacy-version,
.terms-version {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.privacy-date,
.terms-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 25px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.privacy-section,
.terms-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.privacy-section:hover,
.terms-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.privacy-section h2,
.terms-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-accent);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-section h3,
.terms-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-family: var(--font-primary);
}

.privacy-section ul,
.terms-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.privacy-section li,
.terms-section li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.privacy-section li:last-child,
.terms-section li:last-child {
    border-bottom: none;
}

.privacy-section li:hover,
.terms-section li:hover {
    background: rgba(233, 69, 96, 0.03);
    padding-left: 3rem;
}

.privacy-section li::before,
.terms-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1rem;
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, var(--accent-color), var(--highlight-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
}

.privacy-section li strong,
.terms-section li strong {
    color: var(--accent-color);
    font-weight: 600;
}

.privacy-section p,
.terms-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.privacy-section a,
.terms-section a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.privacy-section a::after,
.terms-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.privacy-section a:hover::after,
.terms-section a:hover::after {
    width: 100%;
}

.privacy-grid,
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.privacy-card,
.terms-card {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.05), rgba(255, 107, 157, 0.05));
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(233, 69, 96, 0.1);
    transition: all 0.3s ease;
}

.privacy-card:hover,
.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.15);
}

.privacy-card h4,
.terms-card h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(255, 107, 157, 0.1));
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.highlight-box h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border-left: 4px solid #FFC107;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.warning-box h4 {
    color: #FF9800;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.warning-box h4::before {
    content: "⚠️";
    font-size: 1.2rem;
}

.prohibited-box {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1), rgba(233, 30, 99, 0.1));
    border-left: 4px solid #F44336;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.prohibited-box h4 {
    color: #F44336;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prohibited-box h4::before {
    content: "🚫";
    font-size: 1.2rem;
}

.legal-doc-nav {
    max-width: 900px;
    margin: 90px auto 0;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.95rem;
}

.legal-doc-nav a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.legal-doc-nav a:hover {
    text-decoration: underline;
}

.legal-doc-nav .sep {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .privacy-container,
    .terms-container {
        margin: 80px 10px 20px;
        padding: 60px 15px 40px;
    }

    .privacy-title,
    .terms-title {
        font-size: 2.2rem;
    }

    .privacy-section,
    .terms-section {
        padding: 1.5rem;
    }

    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.5rem;
    }

    .privacy-grid,
    .terms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .privacy-title,
    .terms-title {
        font-size: 1.8rem;
    }

    .privacy-section,
    .terms-section {
        padding: 1rem;
    }

    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.3rem;
    }
}
