:root {
    --bg-dark: #020205;
    --accent-blue: #0066ff;
    --glow-blue: rgba(0, 102, 255, 0.3);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --font-main: 'Inter', sans-serif;
    --grid-color: rgba(255, 255, 255, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Background Grid & Glow */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 50% -20%, #001d3d 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, #000814 0%, transparent 50%);
}

.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Background Video */
.bg-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.bg-video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.nav-logo img {
    height: 40px;
    filter: drop-shadow(0 0 10px var(--glow-blue));
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    display: block;
}

h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 2rem;
    background: linear-gradient(to bottom, #fff 40%, rgba(255,255,255,0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem; /* Un poco más pequeño */
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
}

/* CTA Form (Modern Style) */
.cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.email-input-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.email-input-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1.5rem;
    border-radius: 100px;
    color: white;
    font-size: 1rem;
    outline: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.email-input-wrapper input:focus {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px var(--glow-blue);
}

.btn-primary {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.5);
    background: #1a75ff;
}

/* Privacy Page Content */
.privacy-container {
    padding: 10rem 12% 8rem; /* Aumentado el padding lateral */
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 5rem;
    background: linear-gradient(to right, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1; /* Evita que se corte el título */
}

.privacy-section {
    margin-bottom: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.privacy-section h2 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-blue);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.privacy-section h2::before {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--accent-blue);
}

.privacy-section p, .privacy-section li {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 750px; /* Mejor legibilidad */
}

.privacy-section ul {
    list-style: none;
    padding-left: 1rem;
}

.privacy-section li::before {
    content: "→";
    color: var(--accent-blue);
    margin-right: 10px;
}

/* Footer Info */
.hero-footer {
    position: absolute;
    bottom: 3rem;
    left: 8%;
    display: flex;
    gap: 5rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.hero-footer div span {
    display: block;
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    nav { padding: 2rem; }
    .hero { padding: 0 2rem; }
    .cta-group { flex-direction: column; align-items: flex-start; }
    .email-input-wrapper { max-width: 100%; }
    .btn-primary { width: 100%; text-align: center; }
    .hero-footer { display: none; }
}
