/* Variables de Color */
:root {
    --primary: #ff007a; /* Rosa neón */
    --secondary: #2c0d51; /* Púrpura */
    --accent: #ffeb3b; /* Amarillo brillante */
    --dark: #12002f; /* Azul muy oscuro/negro */
    --light: #ffffff;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

/* Navegación */
header {
    background: rgba(18, 0, 47, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--light);
}

.logo span { color: var(--primary); }

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover { color: var(--accent); }

.btn-nav {
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
}

/* Hero Section */
.hero {
    height: 80vh;
    background:  url('img/fondo-wgj.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--accent);
    text-shadow: 2px 2px var(--primary);
}

.btn-main {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 5px;
    margin-top: 20px;
    transition: transform 0.2s;
}

.btn-main:hover {
    transform: scale(1.1);
    background: white;
}

/* Secciones */
.section { padding: 80px 0; }

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.bg-dark {
    background: #1a0240;
}

/* Tarjetas de Información */
.info-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card {
    background: var(--secondary);
    padding: 20px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1.2rem;
    border-left: 10px solid var(--accent);
}

/* Grid de Países */
.paises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.pais {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    border: 1px solid var(--secondary);
}

.pais:hover {
    background: var(--primary);
    cursor: default;
}

/* Footer */
footer {
    padding: 60px 0;
    background: #000;
}

.copy {
    margin-top: 40px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    nav ul { display: none; }
}