/* style.css - FUTUGOL: Modern Sporty Dark */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
    --bg-dark: #0f172a;       /* Azul muy oscuro (profundidad) */
    --card-bg: #1e293b;       /* Gris azulado (tarjetas) */
    --text-main: #f8fafc;     /* Blanco suave */
    --accent: #38bdf8;        /* Cyan eléctrico (acento moderno) */
    --font-family: 'Inter', sans-serif;
}

body { 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
    font-family: var(--font-family); 
    margin: 0; 
}

/* Header elegante */
header { 
    padding: 2rem 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: rgba(15, 23, 42, 0.9);
}
.logo { font-size: 1.5rem; font-weight: 900; letter-spacing: -1px; color: var(--text-main); }
.logo span { color: var(--accent); } /* Acento en el logo */

/* Nav */
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a { text-decoration: none; color: #94a3b8; font-size: 0.9rem; font-weight: 600; transition: color 0.3s; }
.nav-links a:hover { color: var(--text-main); }

/* Hero */
.hero { padding: 80px 5%; text-align: center; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.1; }
.btn-cta { 
    background: var(--accent); 
    color: var(--bg-dark); 
    padding: 15px 30px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 900; 
    text-transform: uppercase;
}

/* Grilla Moderna */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; padding: 20px 5%; }
.item { background: var(--card-bg); padding: 30px; border-radius: 12px; border: 1px solid #334155; }
.item h3 { color: var(--accent); margin-bottom: 15px; }
