/* Tipografía y Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    background-color: #004aad;
    color: white;
    padding: 20px 0;
}

header h1 {
    text-align: center;
    margin-bottom: 10px;
}

nav {
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    background: url('img/futbol-hero.jpg') center/cover no-repeat;
    color: white;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    background-color: #ffd700;
    color: #004aad;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #ffb700;
}

/* Noticias */
.noticias {
    padding: 50px 0;
    background-color: #eaeaea;
}

.noticias h2 {
    text-align: center;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

/* Galería */
.galeria {
    padding: 50px 0;
}

.galeria h2 {
    text-align: center;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.grid img:hover {
    transform: scale(1.05);
}

.partidos {
    padding: 50px 0;
    background-color: #f0f0f0;
}

.partidos h2 {
    text-align: center;
    margin-bottom: 40px;
}

.audio-card {
    background: white;
    padding: 20px;
    margin: 15px auto;
    border-radius: 10px;
    max-width: 600px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.audio-card h3 {
    margin-bottom: 10px;
    color: #004aad;
}

audio {
    width: 100%;
    outline: none;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
}
