:root {
    --primary: #CC0000; 
    --text-dark: #111111;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-gray: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: var(--bg-white); color: var(--text-dark); line-height: 1.6; }

/* HEADER & NAV */
header {
    width: 100%; padding: 15px 5%; display: flex; justify-content: space-between;
    align-items: center; background: var(--bg-white); position: fixed;
    top: 0; z-index: 1000; border-bottom: 1px solid #eee;
}

header .logo img { height: 40px; }

nav ul { display: flex; list-style: none; gap: 20px; }
nav ul li a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; }

.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-dark); }

/* HERO */
.hero { height: 60vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 10%; margin-top: 80px; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; margin-bottom: 20px; text-transform: uppercase; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.2rem; color: var(--text-light); max-width: 600px; margin-bottom: 40px; }

.coming-soon-box { background: var(--bg-gray); padding: 40px; border-radius: 12px; width: 100%; max-width: 500px; border: 1px solid #eee; }
.input-group { display: flex; gap: 10px; margin-top: 20px; }
input[type="email"] { flex: 1; padding: 15px; border: 1px solid #ddd; border-radius: 6px; outline: none; }
.btn-main { padding: 15px 25px; background: var(--primary); color: white; border: none; border-radius: 6px; font-weight: bold; text-transform: uppercase; cursor: pointer; }

/* FOOTER */
footer { background: var(--bg-gray); padding: 60px 5% 40px; border-top: 1px solid #eee; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 50px; }
footer h4 { font-size: 0.85rem; text-transform: uppercase; margin-bottom: 20px; letter-spacing: 1px; font-weight: 800; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 12px; }
footer ul li a { text-decoration: none; color: var(--text-light); font-size: 0.85rem; }

.social-icons { text-align: center; margin-bottom: 20px; }
.social-icons a { color: var(--text-dark); font-size: 1.5rem; margin: 0 15px; text-decoration: none; }
.copy { text-align: center; padding-top: 20px; font-size: 0.75rem; color: #888; border-top: 1px solid #ddd; }

/* POLÍTICAS ESPECÍFICO */
.container-legal { max-width: 800px; margin: 0 auto; padding: 120px 20px 40px; }
.container-legal h1 { color: var(--primary); margin-bottom: 20px; text-align: center; }
.container-legal h2 { border-bottom: 2px solid var(--primary); display: inline-block; margin-top: 30px; font-size: 1.2rem; }
.contact-info { border: 1px dashed #ddd; padding: 15px; border-radius: 5px; margin: 15px 0; }

/* RESPONSIVO */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    nav { display: none; position: absolute; top: 71px; left: 0; width: 100%; background: var(--bg-white); border-bottom: 1px solid #eee; padding: 20px; }
    nav.active { display: block; }
    nav ul { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 0; }
    .footer-col { border-bottom: 1px solid #ddd; padding: 15px 0; }
    .footer-col h4 { cursor: pointer; display: flex; justify-content: space-between; }
    .footer-col ul { display: none; padding-top: 15px; }
    .footer-col.active ul { display: block; }
}