<style>
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  header {
  background: linear-gradient(rgba(0,128,128,0.85), rgba(0,40,40,0.85)), url('quirofano1.jpg') no-repeat center center; /* Un gradiente ligeramente más oscuro abajo resalta el texto */
  background-size: cover;
  min-height: 80vh; /* Cambiado de height a min-height */
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}
  
  .header-content h1 {
    
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  }
  .header-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  
  .cta-button {
  display: inline-block;
  padding: 10px 25px; /* Reducido de 15px 35px */
  background-color: #ff9800; 
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem; /* Reducido de 1.2em */
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 152, 0, 0.4);
}

.cta-button:hover {
  background-color: #e68a00;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 152, 0, 0.6);
}
  
  section {
    padding: 40px 0;
    padding-bottom: 5px;
  }
  .section-title {
    text-align: center;
    font-size: 2.5em;
    color: #008080;
    margin-bottom: 50px;
  }
  .features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .feature {
    flex-basis: 30%;
    text-align: center;
    margin-bottom: 40px;
  }
  .feature i {
    font-size: 3em;
    color: #008080;
    margin-bottom: 20px;
  }
  .products {
    background-color: #f9f9f9;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  .product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.2);
  }
  
  .product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain; /* ¡Clave! Asegura que el producto se vea completo */
  padding: 15px; /* Le da "aire" al producto para que respire */
  background-color: #ffffff; /* Homologa el fondo por si alguna foto es PNG transparente */
  border-bottom: 1px solid #eee; /* Línea sutil que separa la imagen del texto */
 }
  
  .product-info {
    padding: 20px;
  }
  .product-info h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #008080;
  }
  
  .product-cta {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px; /* Le da el volumen de un botón */
  background-color: #008080; /* El color verde teal de tu marca */
  color: #ffffff; /* Texto en blanco para que contraste */
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  border-radius: 5px; /* Bordes ligeramente redondeados */
  border: none; /* Quitamos la línea de abajo que tenía antes */
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.product-cta:hover {
  background-color: #25D366; /* Cambia al verde de WhatsApp al pasar el mouse */
  color: #ffffff;
  transform: translateY(-2px); /* Pequeño salto al hacer hover */
}
  
  
  .about {
    background-color: #e6f3ff;
  }
  .about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .about-text {
    flex-basis: 50%;
  }
  .about-image {
    flex-basis: 45%;
  }
  .about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  .contact {
    background-color: #008080;
    color: white;
  }

  .contact h4 {
    text-align: center;
    font-size: 1.5em;
    margin: 10px;
    margin-top: 10px;
  }
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group label {
    display: block;
    margin-bottom: 5px;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
  }
  .form-group textarea {
    height: 150px;
  }
  .submit-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .submit-btn:hover {
    background-color: #45a049;
  }
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    bottom: 0px;
  }


    .whatsapp-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.whatsapp-info {
    background-color: #25D366;
}

.whatsapp-support {
    background-color: #128C7E;
}

.whatsapp-button:hover {
    opacity: 0.9;
}

.whatsapp-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;    
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffffff' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 480px) {
    .whatsapp-buttons {
        flex-direction: column;
    }

    .whatsapp-button {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 768px) {
  .features {
    flex-direction: column; /* Apila las características una sobre otra */
  }
  .feature {
    flex-basis: 100%;
    margin-bottom: 30px;
  }
  .about-content {
    flex-direction: column; /* Apila texto e imagen en "Sobre nosotros" */
    text-align: center;
  }
  .about-text, .about-image {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
  .header-content h1 {
    font-size: 2em; /* Evita que el título sea gigantesco en celular */
  }
  header {
    min-height: 100vh; /* Mejor que height fijo para evitar recortes */
    padding: 80px 0;
  }
}

/* --- ESTILOS DE LA NUEVA SECCIÓN DE CONTACTO --- */
.contact-section {
  background-color: #008080; /* Tu color institucional */
  color: white;
  padding: 80px 0; /* Mucho espacio arriba y abajo para que respire */
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.contact-box {
  background-color: rgba(255, 255, 255, 0.08); /* Fondo blanco muy sutil para destacar la tarjeta */
  padding: 40px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.12); /* Brilla un poco al pasar el mouse */
}

.contact-box i {
  font-size: 2.5em;
  color: #ff9800; /* Usamos el naranja de tu botón principal para acentuar los iconos */
  margin-bottom: 20px;
}

.contact-box h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
  display: inline-block;
}

.contact-box p {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
}

/* Alineación vertical para los botones en esta sección */
.whatsapp-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.whatsapp-buttons-vertical .whatsapp-button {
  width: 80%; /* Para que ambos botones tengan el mismo tamaño */
  justify-content: center;
}
</style>