body {
  background: linear-gradient(180deg, #042937 0%, #063447 100%);
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  color: #f8f9fa;
}

.contacto {
  margin-top: 30px;
  margin-bottom: 50px;
}

/* HERO */
.contacto-hero {
  min-height: 45vh;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.58)),
    url("../imagenes/portada1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 40px 20px;
  text-align: center;
  color: white;
}

.contacto-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.contacto-hero p {
  font-size: 1.1rem;
  max-width: 720px;
  line-height: 1.8;
  margin: 0;
}

/* SECCIONES */
.contacto section {
  margin-top: 80px;
}

.contacto h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

/* CARDS */
.contacto-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 32px 26px;
  height: 100%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.contacto-card h2 {
  color: rgb(219, 161, 0);
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.contacto-texto {
  color: #475569;
  line-height: 1.9;
  margin-bottom: 25px;
}

/* ITEMS CONTACTO */
.contacto-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contacto-item i {
  font-size: 1.2rem;
  color: rgb(219, 161, 0);
  margin-top: 4px;
  min-width: 22px;
}

.contacto-item h5 {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contacto-item p {
  color: #475569;
  margin: 0;
  line-height: 1.7;
}

/* BOTONES */
.contacto-botones {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-contacto {
  display: inline-block;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-contacto i {
  margin-right: 8px;
}

.btn-wsp {
  background: linear-gradient(135deg, #18b70d, #128c2a);
  color: white;
  box-shadow: 0 10px 24px rgba(23, 188, 12, 0.25);
}

.btn-wsp:hover {
  background: linear-gradient(135deg, #149c0b, #0f6f22);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-mail {
  background: linear-gradient(135deg, #d6a106, #b98600);
  color: white;
  box-shadow: 0 10px 24px rgba(214, 161, 6, 0.25);
}

.btn-mail:hover {
  background: linear-gradient(135deg, #c99705, #a77700);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-trabaja{
  background: linear-gradient(135deg, #0656d6, #0b4987);
  color: white;
  box-shadow: 0 10px 24px rgba(6, 214, 193, 0.25);
}

.btn-trabaja:hover {
  background: linear-gradient(135deg, #0656d6, #0b4987);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contacto-hero {
    min-height: 38vh;
    padding: 35px 15px;
  }

  .contacto-hero h1 {
    font-size: 2rem;
  }

  .contacto-hero p {
    font-size: 1rem;
  }

  .contacto section {
    margin-top: 55px;
  }

  .contacto-card,
  .contacto-redes {
    padding: 30px 18px;
  }

  .btn-contacto {
    width: 100%;
  }
}