
/* Estilos básicos */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #020202;
  color: white;
}

/* Header */
.site-header {
  background-color: #111;
  color: white;
  padding: 20px 10%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.site-header .logo img {
  width: 200px;
}

.main-nav {
  text-align: center;
  margin-top: 10px;
}

.main-nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #ffcc00;
}

/* Sección Hero con fondo de imagen */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  height: 400px;
  color: white;
  text-align: center;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.cta-button {
  padding: 15px 30px;
  background-color: #ffcc00;
  color: #111;
  font-size: 1.2em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 5px;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: #d60000;
  color: white;
}

/* Sección con fondo oscuro y texto encima */
.section-black {
  background-color: #111;
  color: white;
  padding: 60px 10%;
  text-align: center;
}

.section-white {
  background-color: #fff;
  color: #111;
  padding: 60px 10%;
  text-align: center;
}

.section-image {
  background-size: cover;
  background-position: center;
  padding: 100px 10%;
  color: white;
  text-align: center;
}

.section-image h2 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-image p {
  font-size: 1.5em;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #111;
  padding: 40px 10%;
  text-align: center;
  color: white;
}

footer .socials a {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  margin: 0 10px;
}

footer .socials a:hover {
  color: #ffcc00;
}
