#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff00; /* o negro si querés algo más oscuro */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader-logo {
  width: 400px;
  height: auto;
  animation: pulse 1.5s infinite ease-in-out;
  border: none;
  box-shadow: none !important;
  outline: none !important;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.card-hero {
  height: 300px;
  background-size: cover;
  background-position: center;
  border: none;
  position: relative;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.card-hero:hover {
  transform: scale(1.2);
  z-index: 2;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.card-hero .bg-letter {
  font-size: 450px;
  font-weight: 500;
  position: absolute;
  color: rgba(255, 255, 255, 0.12); /* Subimos opacidad */
  top: -80px;
  left: -40px;
  pointer-events: none;
  line-height: 1;
  /*font-family: 'Bebas Neue', Impact, sans-serif;*/
}


.card-hero h3 {
  position: relative;
  z-index: 1;
  font-weight: bold;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Colores personalizados por tipo */
.overlay-agro {
  background-color: rgba(214, 172, 55, 0.986); /* Rojo oscuro */
}

.overlay-livianos {
  background-color: rgba(219, 30, 23, 0.884); /* Azul eléctrico */
}

.overlay-pesados {
  background-color: rgba(17, 38, 226, 0.8); /* Gris oscuro */
}



 .contact-table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
  }

  .contact-table th,
  .contact-table td {
    padding: 10px;
    text-align: left;
    vertical-align: middle;
  }

  .contact-table th {
    background-color: #e0e0e0;
    color: red;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
  }

  .contact-table tbody tr:nth-child(even) {
    background-color: #f8f8f8;
  }

  .contact-table i {
    margin-right: 5px;
    color: red;
  }

  .contact-table .highlight {
    font-weight: bold;
    color: #000;
  }

  .contact-address {
    margin-top: 20px;
    font-style: italic;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .contact-address i {
    color: red;
    font-size: 20px;
  }

  @media (max-width: 768px) {
    .contact-table td {
      display: block;
      width: 100%;
    }
  }


  