
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;
}


header {
  background-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.logo {
  width:200px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

section {
  padding: 60px 20px;
  border-bottom: 1px solid #333;
}

h1, h2 {
  color: #ffd700;
  text-align: center;
}

.hero {
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 40px;
  border-radius: 12px;
  color: #fff;
}

.boton {
  background-color: #ffd700;
  color: #000;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.boton:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

.imagenes-quienes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  text-align: center;
}

.imagenes-quienes img {
  width: 30%;
  min-width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  object-fit: cover;
}

#quienes p {
  text-align: justify;
  max-width: 900px;
  margin: 0 auto;
}

.contenido-quehacemos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.contenido-quehacemos img {
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
}

.contenido-quehacemos p {
  max-width: 500px;
  text-align: justify;
}

#funciona .pasos-funciona {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  text-align: center;
}

.paso {
  max-width: 250px;
}

.paso img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paso img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.paso p {
  margin-top: 10px;
  font-weight: bold;
  color: #fff;
}

#contacto {
  text-align: center;
}

#contacto form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 auto;
  margin-top: 20px;
  max-width: 600px;
  align-items: center;
}

#contacto input,
#contacto textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
  background-color: #222;
  color: #ffd700;
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

footer {
  text-align: center;
  padding: 30px;
  background-color: #111;
  color: #ffd700;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-top: 1px solid #333;
  margin-top: 40px;
}

/* Responsive design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 10px;
  }

  .contenido-quehacemos {
    flex-direction: column;
  }

  .contenido-quehacemos p {
    text-align: center;
  }
}

.whatsapp {
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp img {
  width: 5%;
  height: 5%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

/* Posiciones individuales */
#wa-ignacio {
  bottom: 9px;
}

#wa-pablo {
  bottom: 9px;
}

.whatsapp:hover {
  transform: scale(1.1);
}
.whatsapp-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 15px;
}

.whatsapp-links img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.whatsapp-links img:hover {
  transform: scale(1.1);
}
#casos-exito {
  padding: 60px 20px;
  background-color: #111;
  text-align: center;
}

#casos-exito h2 {
  color: #ffd700;
  margin-bottom: 40px;
}

.contenido-casos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  text-align: justify;
}

.casos-img {
  width: 30%;
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  height: auto;
}

.texto-casos {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
}

