* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
  color: #fff;
  background-color: #222;
}

header {
  background-color: #ff6600; /* Naranja WiloHosting */
  padding: 15px 0;
  text-align: center;
}

header .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.logo {
  height: 100px;
  vertical-align: middle;
}

.btn-acceso {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  color: #ff6600;
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.hero {
  height: calc(80vh - 80px);
  background-image: url("https://wilohosting.com/img/cabecera-wilo.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  max-width: 800px;
}

.overlay h1 {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #ffffff;
}

.box {
  background-color: #ff6600;
  padding: 30px;
  border-radius: 8px;
  text-align: left;
}

.box h2 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #fff;
}

.box p {
  font-size: 16px;
  line-height: 1.6;
}

footer {
  background-color: #222;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}
