* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}




header {
  background-color: #2c3e50;
  color: white;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}





.logo {
  width: 120px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1em;
}

nav a {
  color: white;
  text-decoration: none;
}

main {
  padding: 2em;
}

.bienvenida {
  text-align: center;
  padding: 2em 0;
}

.destacados {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.servicio {
  background-color: white;
  padding: 1em;
  border-radius: 10px;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.servicio img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.lista-servicios {
  margin-top: 2em;
  padding-left: 2em;
}

.formulario-contacto {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

input, textarea {
  width: 100%;
  padding: 0.5em;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 0.7em;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  text-align: center;
  background-color: #2c3e50;
  color: white;
  padding: 1em 0;
  margin-top: 2em;
}

@media (max-width: 768px) {
  .destacados {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }
  .whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 1000;
}


.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.modal-contenido {
  background-color: white;
  padding: 2em;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.modal-contenido h2 {
  color: #2c3e50;
  margin-bottom: 1em;
}

.modal-contenido button {
  background-color: deepskyblue;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 1em;
  border-radius: 5px;
  cursor: pointer;
}

.modal-contenido button:hover {
  background-color: #007acc;
}


.ver-mas-sutil a {
  font-size: 0.95rem;
  color: #555;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  transition: color 0.3s ease;
}

.ver-mas-sutil a:hover {
  color: #00L7bff;
}

.ver-mas-sutil i {
  transition: transform 0.3s ease;
}

.ver-mas-sutil a:hover i {
  transform: scale(1.1);
}



}
