   /* Estilos específicos para la página de privacidad */


@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&family=Comfortaa:wght@300..700&display=swap');



:root {
  --platinum: #e6e8e6;
  --platinum-dark: #ced0ce;
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f5f5f7;
  --gray-mid: #8e8e93;
  --gold: #d4af37;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-elevated: 0 8px 40px rgba(0, 0, 0, 0.08);
  --section-spacing: 80px;
  --font-family: "alata-regular", sans-serif;
  --overlay-gradient-start: rgba(0, 0, 0, 0.85);
  --overlay-gradient-mid: rgba(0, 0, 0, 0.7);
  --overlay-gradient-end: rgba(0, 0, 0, 0.5);
}

        .privacy-hero {
            height: 40vh;
            min-height: 400px;
            background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            overflow: hidden;
            position: relative;
        }
        
        .privacy-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, 
                rgba(0, 0, 0, 0.8) 0%, 
                rgba(0, 0, 0, 0.6) 50%, 
                rgba(0, 0, 0, 0.4) 100%);
        }
        
        .privacy-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .privacy-title {
            font-family: var(--font-family);
            font-size: 3rem;
            font-weight: 500;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        
        .privacy-subtitle {
            font-family: var(--font-family);
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 300;
        }
        
        .privacy-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px;
        }
        
        .privacy-header {
            text-align: center;
            padding: 0 0 40px;
            margin-bottom: 40px;
            position: relative;
        }
        
        .privacy-header h1 {
            font-family: var(--font-family);
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 20px;
            color: var(--black);
            position: relative;
            padding-bottom: 20px;
        }
        
        .privacy-header h1::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg,
                var(--platinum) 0%,
                var(--platinum-dark) 100%);
        }
        
        .privacy-header p {
            color: var(--gray-mid);
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .last-update {
            background: var(--gray-light);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 40px;
            border-left: 4px solid var(--gold);
            box-shadow: var(--shadow-subtle);
        }
        
        .last-update strong {
            color: var(--black);
        }
        
        .content-section {
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .content-section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title {
            font-family: var(--font-family);
            font-size: 1.8rem;
            font-weight: 500;
            margin-bottom: 25px;
            color: var(--black);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--platinum);
        }
        
        .subsection-title {
            font-family: var(--font-family);
            font-size: 1.3rem;
            font-weight: 500;
            margin: 30px 0 15px;
            color: var(--black);
        }
        
        p {
            margin-bottom: 20px;
            color: var(--black);
            line-height: 1.7;
        }
        
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        
        li {
            margin-bottom: 10px;
            color: var(--black);
            line-height: 1.6;
        }
        
        .legal-info {
            background: var(--gray-light);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border: 1px solid var(--platinum);
            box-shadow: var(--shadow-subtle);
        }
        
        .legal-info h3 {
            color: var(--black);
            margin-bottom: 15px;
            font-family: var(--font-family);
            font-weight: 500;
        }
        
        .contact-card {
            background: var(--gray-light);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            border-left: 4px solid var(--gold);
            box-shadow: var(--shadow-subtle);
        }
        
        .contact-card h3 {
            color: var(--black);
            margin-bottom: 20px;
            font-family: var(--font-family);
            font-weight: 500;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--black);
            font-size: 1.3rem;
            box-shadow: var(--shadow-subtle);
        }
        
        .rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .right-card {
            background: var(--white);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid var(--platinum);
            box-shadow: var(--shadow-subtle);
            transition: var(--transition);
        }
        
        .right-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-elevated);
        }
        
        .right-card h4 {
            color: var(--black);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: var(--font-family);
            font-weight: 500;
        }
        
        .right-card i {
            color: var(--gold);
        }
        
        .law-reference {
            font-size: 0.9rem;
            color: var(--gray-mid);
            font-style: italic;
            margin-top: 10px;
        }
        
        .data-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .data-type {
            background: var(--white);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid var(--platinum);
            box-shadow: var(--shadow-subtle);
            transition: var(--transition);
        }
        
        .data-type:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-elevated);
        }
        
        .data-type h4 {
            color: var(--black);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: var(--font-family);
            font-weight: 500;
        }
        
        .privacy-footer {
            text-align: center;
            padding: 50px 0;
            margin-top: 60px;
            color: var(--gray-mid);
            border-top: 1px solid var(--platinum);
        }
        
        .back-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background-color: var(--black);
            color: var(--white);
            padding: 16px 35px;
            font-family: var(--font-family);
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            border-radius: 50px;
            transition: var(--transition);
            border: 2px solid var(--black);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
            margin-top: 30px;
        }
        
        .back-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent);
            transition: var(--transition);
            z-index: -1;
        }
        
        .back-button:hover::before {
            left: 100%;
        }
        
        .back-button:hover {
            background: var(--white);
            color: var(--black);
            transform: translateY(-3px);
            box-shadow: var(--shadow-elevated);
        }
        
        .highlight {
            background: rgba(212, 175, 55, 0.1);
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 500;
            color: var(--black);
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .privacy-container {
                padding: 60px 30px;
            }
            
            .rights-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .privacy-hero {
                height: 35vh;
                min-height: 350px;
            }
            
            .privacy-title {
                font-size: 2.5rem;
            }
            
            .privacy-subtitle {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .privacy-container {
                padding: 50px 20px;
            }
            
            .privacy-hero {
                height: 30vh;
                min-height: 300px;
            }
            
            .privacy-title {
                font-size: 2rem;
            }
            
            .privacy-subtitle {
                font-size: 1rem;
            }
            
            .privacy-header h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .subsection-title {
                font-size: 1.2rem;
            }
            
            .rights-grid,
            .data-types {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .privacy-hero {
                height: 25vh;
                min-height: 250px;
            }
            
            .privacy-title {
                font-size: 1.8rem;
            }
            
            .contact-card {
                padding: 25px 20px;
            }
            
            .contact-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .back-button {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .privacy-hero {
                height: 22vh;
                min-height: 220px;
            }
            
            .privacy-title {
                font-size: 1.6rem;
            }
            
            .privacy-header h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
        }