/* Estilos Generales */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

img {
  max-width: 80%;
  height: auto;
}

.responsive {
  width: 100%;
}

/* Estilos Header */

header {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}

/* Estilos Main */

main {
  margin: 50px auto;
  max-width: 600px;
  text-align: center;
  position: relative; /* Agregado */
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.botones {
  position: fixed; /* Agregado */
  bottom: 20px;
  right: 20px;
}

button {
  background-color: #4CAF50;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 10px;
  transition-duration: 0.4s;
}

button:hover {
  background-color: #3e8e41;
}

.contacto-whatsapp {
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  color: #000000; /* Color de texto negro */
}


.contacto-correo {
  background-color: #f44336;
}

/* Estilos Footer */

footer {
  background-color: #f2f2f2;
  color: #333;
  text-align: center;
  padding: 10px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1; /* Agregado */
}
