body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #042c4b, #007ba7);
    color: white;
  }
  
  /* HEADER */
  .header-asociados {
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    color: white;
  }
  
  .header-asociados .logo img {
    height: 60px;
  }
  
  .header-asociados .nav-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .header-asociados .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .header-asociados .nav-links a:hover {
    color: #00cfff;
  }
  
  /* SECCION ASOCIADOS */
  .asociados-section {
    background: linear-gradient(rgba(65, 73, 80, 0.6), rgba(105, 112, 119, 0.6)), url('../img/fondo_asociados.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
  }
  
  
  /* Fondo decorativo animado lateral */
  .asociados-section::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 300px;
    height: 100%;
    background: url('../img/envios_animado.svg') no-repeat center;
    background-size: contain;
    opacity: 0.04;
    pointer-events: none;
    animation: flotar 40s linear infinite;
  }
  
  @keyframes flotar {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
  }
  
  .contenido-asociados h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  .descripcion {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #ffffff;
  }
  
  /* servicios */
  .servicios-lista {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .servicio {
  background: #f4f7fb;
  color: #111; /* ← Forzamos texto oscuro */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
  position: relative;
  overflow: hidden;
}

  
  .servicio:nth-child(1) { animation-delay: 0.2s; }
  .servicio:nth-child(2) { animation-delay: 0.4s; }
  .servicio:nth-child(3) { animation-delay: 0.6s; }
  .servicio:nth-child(4) { animation-delay: 0.8s; }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  

  .servicio::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
    transition: opacity 0.3s ease, transform 0.6s ease;
    pointer-events: none;
    top: 20px;
    right: 20px;
  }

  .servicio:hover::after {
    opacity: 0.15;
    transform: scale(1.2) rotate(15deg);
  }
  
  /* Imágenes específicas por tipo */
  .servicio:nth-child(1)::after {
    background-image: url('../img/avion.png');
  }
  .servicio:nth-child(2)::after {
    background-image: url('../img/barco.png');
  }
  .servicio:nth-child(3)::after {
    background-image: url('../img/caja.png');
  }
  .servicio:nth-child(4)::after {
    background-image: url('../img/compras.png');
  }


  .servicio:hover {
    transform: scale(1.15) translateY(35px);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.1);
  }
  
  
  .servicio h3 {
    font-size: 1.5rem;
    color: #005599;
    margin-bottom: 1rem;
  }
  
  .servicio ul {
    list-style: none;
    padding: 0;
  }
  
  .servicio li {
    font-size: 1.1rem;
    margin: 0.4rem 0;
  }
  
  /* formularios */
  .formulario-contacto {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    max-width: 600px;
    margin: 2rem auto 0;
  }
  
  .formulario-contacto h3 {
    margin-bottom: 1rem;
    color: #00e3ff;
  }
  
  .formulario-contacto input,
  .formulario-contacto textarea {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 6px;
  }
  
  .formulario-contacto button {
    background-color: #003366;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .formulario-contacto button:hover {
    background-color: #005b99;
  }