body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
}

.logo {
  width: 200px;
  margin: 20px auto;
  display: block;
}

.hero {
  background: url('Banner1.png') no-repeat center center/cover;
  height: 100vh;
  color: white;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 8px;
  margin: auto;
  max-width: 500px;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

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

.btn {
  background: #ff6600;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #e65300;
}

.servicios, .beneficios, .cta {
  padding: 60px 20px;
  text-align: center;
}

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

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 280px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.slogan img {
  width: 100%;
  max-width: 1000px;
  display: block;
  margin: 40px auto;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
}
.contacto {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.contacto h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.contacto p {
  font-size: 1em;
  margin-bottom: 30px;
}

.contacto form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacto input,
.contacto textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1em;
}

.contacto button {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 14px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contacto button:hover {
  background-color: #e65300;
}