body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  header nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  
  header nav a:hover {
    text-decoration: underline;
  }
  
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/banner.png') center center/cover no-repeat;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: bold;
  }

  .btn-hero {
    background-color: #FF6600; 
    color: white;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .btn-hero:hover {
    background-color: #e65c00;
    transform: scale(1.05);
  }
  
  .caracteristica-card {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .caracteristica-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .soluciones-transporte .card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  }

.cargas-especiales {
    background-color: #006b8f; 
    padding: 2rem 0;
    color: white;
    font-family: Arial, sans-serif;
  }
  

.banda {
    position: relative;
    margin: 1.5rem 0;
    padding: 2rem 1rem;
    z-index: 1;
    overflow: hidden;
  }
  
 
  .contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
  }
  
  .contenido.inverso {
    flex-direction: row-reverse;
  }
  
  .texto {
    flex: 1;
    padding: 0 1rem;
    z-index: 2;
  }
  
  .texto h5 {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .texto p {
    margin: 0;
  }
  
  .imagen {
    flex: 1;
    padding: 0 1rem;
    position: relative;
  }
  
  .imagen img {
    width: 100%;
    height: auto;
    max-height: none; 
    object-fit: contain;
    border-radius: 8px;
    margin-top: -40px; 
  }  
  
  .texto h5 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #78CFFD; 
  }
  
  .texto p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .banda::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002c5c; 
    opacity: 0.9;
    z-index: -1;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); 
  }
  
  .texto h5 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #78CFFD;
  }
  
  .texto p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
  }
  
  img {
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
  }

  .contacto {
    background-color: #78CFFD; 
    padding: 3rem 1rem;
  }
  
  .contenedor-contacto {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
  }
  
  .mapa {
    flex: 1 1 50%;
    min-width: 300px;
  }
  
  .card-contacto {
    flex: 1 1 40%;
    background-color: #e0f4ff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }
  
  .card-contacto h3 {
    text-transform: uppercase;
    color: #002c5c;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .card-contacto input,
  .card-contacto button {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #78CFFD;
    font-size: 1rem;
  }
  
  .card-contacto button {
    background-color: #006b8f;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .card-contacto button:hover {
    background-color: #005777;
    transform: scale(1.03);
  }

  
.footer {
  background-color: #002c5c;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-top-curve {
  height: 80px;
  width: 100%;
  background: linear-gradient(to bottom, #00aaff, #002c5c);
  border-top-left-radius: 100% 80px;
  border-top-right-radius: 100% 80px;
  margin-bottom: -40px;
}

/* Contenido del footer */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 2rem 1rem 1rem;  
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 200px;
  margin: 1rem;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #78CFFD;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #78CFFD;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #78CFFD;
}

/* Pie de página final */
.footer-bottom {
  text-align: center;
  padding: 1rem 0;
  background-color: #001b3c;
  font-size: 0.9rem;
}

  .equipo-card {
    background-color: white;
    border: 2px solid #00B0F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .equipo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 176, 240, 0.2);
  }

  .texto-equipo {
    text-transform: uppercase;
    color: #003366;
    font-weight: 600;
  }

  .privacy-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  color: #333;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.privacy-container h1 {
  color: #002c5c;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.privacy-container h2 {
  color: #004a8f;
  margin-top: 1.5rem;
}

.privacy-container p {
  line-height: 1.7;
  margin-top: 0.5rem;
}

.privacy-contact {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f0f4f8;
  border-radius: 8px;
}

.privacy-contact h2 {
  color: #002c5c;
  margin-bottom: 0.5rem;
}

.privacy-contact address {
  font-style: normal;
  color: #333;
}

.privacy-contact ul {
  list-style: none;
  padding: 0;
}

.privacy-contact li {
  margin-bottom: 0.5rem;
}

.privacy-contact a {
  color: #0066cc;
  text-decoration: none;
}

.privacy-contact a:hover {
  text-decoration: underline;
}
