/* FUENTE */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* HERO REDISEÑADO con imagen de fondo */
.hero-revamp {
  background-image: url("img/fondo_inicio.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 100px 20px; /* más alto y adaptable */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
}

.hero-revamp::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55); /* oscurece la imagen para legibilidad */
  z-index: 1;
}

.hero-revamp .container {
  position: relative;
  z-index: 2;
}

.texto-hero h1 {
  font-size: 2.8rem;
  line-height: 1.3;
}

.texto-hero .text-acento {
  color: #00ccff;
}

.texto-hero p {
  font-size: 1.2rem;
  color: #e0e0e0;
  max-width: 550px;
}

.logo-grande {
  max-height: 220px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
  .hero-revamp {
    text-align: center;
  }

  .logo-grande {
    max-height: 150px;
    margin-top: 30px;
  }
}

/* SERVICIOS */
.servicios-seccion {
  background: white;
  margin-top: -80px;
  padding-top: 120px;
  position: relative;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.servicio-box {
  background-color: #ffffff;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.servicio-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.icono-servicio img {
  height: 60px;
  width: 60px;
}

/* TÍTULOS */
.section-title {
  font-weight: 700;
  font-size: 2.2rem;
  color: #003366;
}

/* FOOTER */
footer {
  background-color: #003366;
}

.contacto-seccion {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

.formulario-contacto {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.grupo-inputs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.grupo-inputs input {
  flex: 1;
  min-width: 250px;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.formulario-contacto textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
}

.btn-enviar {
  background-color: #0066ff;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-enviar:hover {
  background-color: #0052cc;
}

.btn-wsp {
  display: inline-block;
  margin: 20px 0;
  background-color: #25D366;
  color: white;
  padding: 10px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .tu-clase {
    font-size: 1.2rem;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .texto-hero h1 {
    font-size: 1.8rem;
  }

  .texto-hero p {
    font-size: 1rem;
  }
}
