  body {
      font-family: Arial, sans-serif;
      margin: 0; padding: 0;
      background: #f9f9f9;
      color: #333;
      line-height: 1.6;
    }
    header {
      background: #2d5a27;
      color: white;
      padding: 1.5rem 2rem;
      text-align: center;
    }
    main {
      max-width: 900px;
      margin: 2rem auto;
      padding: 0 1rem;
    }
    h1, h2 {
      color: #2d5a27;
      text-align: center;
      margin-bottom: 1rem;
    }
    .contact-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 2rem;
      margin-bottom: 3rem;
    }
    .info-item {
      flex: 1 1 250px;
      background: white;
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: center;
    }
    .info-item h3 {
      margin-bottom: 0.8rem;
      color: #2d5a27;
    }
    .info-item a {
      color: #2d5a27;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      margin-top: 0.5rem;
    }
    .info-item a:hover {
      text-decoration: underline;
    }
    iframe {
      width: 100%;
      height: 300px;
      border: none;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    form {
      background: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      max-width: 600px;
      margin: 0 auto 3rem;
    }
    form label {
      display: block;
      margin-bottom: 0.3rem;
      font-weight: 600;
      color: #2d5a27;
    }
    form input, form textarea {
      width: 100%;
      padding: 0.6rem;
      margin-bottom: 1.2rem;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
      resize: vertical;
    }
    form button {
      background: #2d5a27;
      color: white;
      border: none;
      padding: 0.8rem 1.5rem;
      border-radius: 6px;
      font-weight: 700;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    form button:hover {
      background: #1f3d1a;
    }
    .redes-sociales {
      text-align: center;
      margin-bottom: 2rem;
    }
    .redes-sociales a {
      margin: 0 10px;
      text-decoration: none;
      font-size: 1.8rem;
      color: #2d5a27;
      transition: color 0.3s ease;
    }
    .redes-sociales a:hover {
      color: #1f3d1a;
    }
    @media (max-width: 600px) {
      .contact-info {
        flex-direction: column;
        gap: 1.5rem;
      }
    }
	
	.img-contenedor img {
  transition: transform 0.5s ease;
}

.img-contenedor:hover img {
  transform: scale(1.05); /* Crece un 5% */
}

	footer p {
		text-align: center;
	}
	
	 .btn-direcciones:hover {
    background: #e65100;
	transform: scale(1.07);
  }