   body {
      font-family: Arial, sans-serif;
      margin: 0; padding: 0;
      background: #f9f9f9;
      color: #333;
    }
    .container {
      max-width: 1100px;
      margin: 2rem auto;
      padding: 0 1rem;
    }
    .logo_empresa {
      max-width: 200px;
      margin: 0 auto 2rem;
      display: block;
    }
    .equipo-foto {
      width: 100%;
      max-width: 600px;
      display: block;
      margin: 2rem auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    h1, h2 {
      text-align: center;
      color: #2d5a27;
    }
    p {
      line-height: 1.6;
      max-width: 800px;
      margin: 1rem auto;
      text-align: justify;
    }
    section {
      margin-bottom: 3rem;
    }
   
   .proveedores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.proveedor-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.proveedor-link:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transform: translateY(-5px);
}

.proveedor-logo {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* Responsive: en pantallas pequeñas 1 columna */
@media (max-width: 700px) {
  .proveedores {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
   
    ul.servicios {
      max-width: 600px;
      margin: 1rem auto;
      padding-left: 1.2rem;
    }
    ul.servicios li {
      margin-bottom: 0.6rem;
    }
    @media (max-width: 600px) {
      .proveedores {
        flex-direction: column;
        align-items: center;
      }
      .proveedor-logo {
        max-width: 200px;
      }
    }
	
	.servicios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
  }
 .servicio {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;

  /* Centrar contenido horizontalmente */
  text-align: center;

  /* Centrar contenido verticalmente con flexbox */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
  .servicio:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
 .numero-animado {
  font-size: 1rem; /* Igual tamaño que el texto */
  font-weight: 700;
  color: orange; /* Color naranja */
  margin-bottom: 0.5rem;
}
  .titulo-servicio {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #2d5a27;
  }
  .descripcion {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  .boton {
    display: inline-block;
    background: #2d5a27;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(45,90,39,0.3);
    transition: background-color 0.3s ease;
  }
  .boton:hover {
    background: #e65100;
	transform: scale(1.07);
  }
  
  .fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
	
	footer p {
		text-align: center;
	}
