* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  height: 50px;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}

.btn {
  padding: 8px 16px;
  border: 1px solid #4CAF50;
  border-radius: 4px;
}

.hero {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  background: white;
  color: #4CAF50;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.section {
  padding: 60px 0;
}

.section.light {
  background: #f9f9f9;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.process {
  margin-top: 30px;
  padding-left: 20px;
}

.contact-form {
  max-width: 500px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.footer {
  background: #333;
  color: white;
  padding: 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer a {
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav nav {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    gap: 10px;
  }

	/* Estilos para el botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; /* Color verde de WhatsApp */
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 3px #666;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E; /* Verde más oscuro al pasar el mouse */
}

.whatsapp-icon {
  width: 70%; /* Ajusta el tamaño del ícono dentro del círculo */
  height: 70%;
  object-fit: contain; /* Asegura que el ícono se vea bien */
}

/* Opcional: Ocultar en pantallas muy pequeñas si lo prefieres */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
    font-size: 30px;
  }
  .whatsapp-icon {
    width: 65%;
    height: 65%;
  }
}
