
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");
.contact-navbar-socialmedia {
    background-color: #2C0648; 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 10px 30px; 
    font-family: Arial, sans-serif;
    color: white;
    font-size: 14px;
    flex-wrap: wrap; 
    overflow: hidden;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.contact-info i {
    margin-right: 8px; 
}

.icon-phone-social-media i,
.icon-email-social-media i,
.icon-location-social-media i {
    font-size: 22px; 
}

.contact-socialmedia-phone,
.contact-socialmedia-email,
.contact-socialmedia-location {
    margin-left: 5px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    text-decoration: none;
}

.social-links a i {
    font-size: 20px; 
    transition: color 0.3s ease;
}

.social-links a:hover i {
    color: #ddd; 
}


@media screen and (max-width: 768px) {
  .contact-navbar-socialmedia {
      padding: 10px 15px; 
      flex-direction: row; 
      justify-content: space-between; 
      flex-wrap: nowrap; 
  }

  .contact-info {
      display: flex;
      align-items: center;
      margin: 0; 
      flex-grow: 1;
      justify-content: center;
  }

  .contact-info i {
      margin-right: 5px; 
  }

  .social-links {
      display: flex;
      gap: 15px; 
      margin: 0;
      justify-content: flex-end; 
      flex-grow: 1;
  }

  .social-links a i {
      font-size: 18px; 
  }

  .contact-socialmedia-phone,
  .contact-socialmedia-email,
  .contact-socialmedia-location {
      margin: 0; 
      text-align: center;
  }
  .icon-email-social-media {
    display: none;
  }
}

.top-bar {
    background-color: #2C0648; /* Fondo morado */
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    font-family: Arial, sans-serif;
}

.top-bar__contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar__contact i {
    font-size: 1.2rem;
    color: white;
}

.top-bar__social {
    display: flex;
    gap: 15px;
}

.top-bar__social a {
    color: white;
    font-size: 1.2rem;
}

.top-bar__social a:hover {
    color: #ccc; /* Color al pasar el mouse */
}

:root {
  
  --black-color: hsl(0, 0%, 100%);
  --black-color-light: hsl(0, 0%, 100%);
  --black-color-lighten: hsl(0, 0%, 100%);
  --white-color: #2C0648;
  --body-color: hsl(0, 0%, 100%);
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;
  --font-regular: 400;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
}

.container-menu-logo {
    width: 150px;
    height: auto;
  }
  
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;

}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }
  
  
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}
.arrow-container{
    height: 15px;
}
.dropdown__link, 
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color: var(--black-color);
}
.dropdown__input {
  display: none;
}
.dropdown__input:checked + .nav__link + .dropdown__menu {
  max-height: 1000px;
}

/* Rotar la flecha hacia arriba cuando el menú está abierto */
.dropdown__input:checked + .nav__link .dropdown__arrow {
  transform: rotate(180deg);
  transition: transform 0.4s ease;
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}
.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

.dropdown__item.active .dropdown__menu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Para cerrarlo cuando no tenga la clase active */
.dropdown__menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}
.whatsapp-icon {
  display: flex;
  align-items: center;
  background-color: #2C0648; 
  color: white;
  border-radius: 30px;
  padding: 10px 20px; 
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  height: 40px;
  margin-top: 20px;

}

.whatsapp-icon img {
  width: 20px; 
  margin-right: 10px;
}

.whatsapp-icon:hover {
  background-color: #660c7a; 
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
  
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
  
}
@media screen and (max-width: 1118px) {
    .whatsapp-icon {
      display: none;
}
  }
  .hero-section {
    position: relative;
    width: auto;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  
  .hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; 
  }
  
  
  #overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 25, 25, 0.5);
    z-index: 2; /* Encima de la imagen de fondo */
  }
  
  /* Canvas */
  canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3; /* Encima del overlay */
  }
  
  /* Contenido de la sección hero */
  .hero-content {
    position: relative;
    z-index: 4; /* Encima de todo lo demás */
    text-align: center;
    color: #fff;
  }
  
  .hero-content h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
  }
  
  .hero-content button {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  .hero-content button:hover {
    background-color: #4b0082;
  }
  @media (max-width: 1024px) {
    
    .hero-section, .hero-section-container2 {
      height: 90vh; /* Ajusta la altura en pantallas más pequeñas */
    }
  
    .hero-content h2, .section-title2 {
      font-size: 28px; /* Reduce el tamaño del título */
    }
  
    .hero-content button {
      padding: 8px 16px; /* Ajusta el tamaño del botón */
      font-size: 14px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-section{
      height: 80vh; /* Reduce aún más la altura para pantallas medianas */
    }
  
    .hero-content h2 {
      font-size: 24px; /* Ajusta el tamaño del texto */
      max-width: 600px;
    }
  
    .hero-content button {
      padding: 6px 12px; /* Reduce el tamaño del botón */
      font-size: 12px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-section, .hero-section-container2{
      height: 70vh; /* Reduce la altura para móviles */
    }
  
    .hero-content h2 {
      font-size: 20px; /* Texto más pequeño en pantallas pequeñas */
      max-width: 100%; /* Ocupa todo el ancho disponible */
    }
  
    .hero-content button {
      padding: 5px 10px; /* Botón más compacto */
      font-size: 10px;
    }
  }
  
/*Nuestro servicio */
.container-our-service {
  background-image: linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.7)),
  url(./images/StockCake-Worker\ among\ containersTrabajador\ entre\ contenedores_1725319955.webp);
  position: relative;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
  height: 350px;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container-our-service-span,
.container-our-service-p,
.btn2 {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%) translateY(50px); /* Inicialmente desplazado */
  opacity: 0; /* Oculto */
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.scroll-active .container-our-service-span,
.scroll-active .container-our-service-p,
.scroll-active .btn2 {
  transform: translateX(-50%) translateY(0); /* Se desplaza a su posición final */
  opacity: 1; /* Aparece */
}
.container-our-service-span {
  top: 20%;
  font-size: 36px;
  font-family: 'Lato', sans-serif;
  font-style: italic;
  font-weight: 800;
}

.container-our-service-p {
  top: 40%;
  font-size: 16px;
  width: 80%;
  line-height: 1.5;
}

.btn2 {
  top: 80%;
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
}

.btn2:hover {
  background-color: #2C0648;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container-our-service {
    height: 250px; /* Reduce la altura en pantallas más pequeñas */
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .container-our-service-span {
    top: 15%;
    font-size: 24px; /* Reduce el tamaño del texto principal */
  }
  
  .container-our-service-p {
    top: 35%;
    font-size: 11px; /* Reduce el tamaño del párrafo */
    width: 90%; /* Aumenta el ancho del texto para mejorar la legibilidad */
  }
  
  .btn2 {
    top: 75%; /* Ajusta la posición del botón */
    padding: 8px 16px; /* Reduce el tamaño del botón */
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container-our-service {
    height: 200px; /* Reduce aún más la altura para pantallas muy pequeñas */
  }

  .container-our-service-span {
    top: 10%;
    font-size: 10px; /* Reduce más el tamaño del texto principal */
  }
  
  .container-our-service-p {
    top: 30%;
    font-size: 9px; /* Reduce más el tamaño del párrafo */
    width: 100%; /* Aumenta el ancho del texto para que ocupe toda la pantalla */
  }
  
  .btn2 {
    top: 70%; /* Ajusta la posición del botón */
    padding: 6px 12px; /* Reduce más el tamaño del botón */
    font-size: 12px;
  }
}
/* Sección de expertos */
.custom-expert-section {
  padding: 50px 0;
  background-color: #fff;
}

.custom-content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-top: 10%;
  padding-bottom: 10%;
  background-color: #f5f5f5;
  border-bottom-right-radius: 150px;
}

/* Contenedor de imagen */
.custom-image-container {
  width: 50%;
}

.custom-expert-image {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* Contenedor de texto */
.custom-text-container {
  width: 50%;
  color: #4a5568; /* Gris oscuro */
}

.custom-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #b5b5b5; /* Negro oscuro */
}

.custom-highlight {
  color: #2C0648; /* Verde azulado */
}

.custom-paragraph {
  font-size: 1.125rem;
  margin-bottom: 15px;
  line-height: 1.7;
  color: #718096; /* Gris medio */
  padding-left: 10%;
}

/* Botón personalizado */
.custom-btn {
  display: inline-block;
  margin-top: 30px;
  margin-left: 20%;
  background-color: #e2e8f0; /* Gris claro */
  color: #2C0648; 
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.custom-btn:hover {
  background-color: #cbd5e0; /* Gris más oscuro */
}

.custom-arrow {
  margin-left: 10px;
}
/* Contenedor oculto al inicio */
.custom-image-container,
.custom-text-container {
  opacity: 0;
  transform: translateX(0);
  transition: all 1s ease-in-out;
}

.image-slide-in {
  animation: slide-in-left 1s ease-out forwards;
}

.text-slide-in {
  animation: slide-in-right 1s ease-out forwards;
}

@keyframes slide-in-left {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


/* Ajustes iniciales para la dirección del movimiento */
.custom-image-container {
  position: relative;
  transform: translateX(100px); 
  /* Mueve la imagen hacia la izquierda */
}

.custom-text-container {
  transform: translateX(-100px); 
  position:relative;
  
  /* Mueve el texto hacia la derecha */
}


/* Estilos responsive */
@media (max-width: 1024px) {
  /* Mantén los cambios en los contenedores y texto en pantallas más pequeñas */
  .custom-content-container {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .custom-image-container {
    width: 100%;
    text-align: center;
  }

  .custom-expert-image {
    width: 100%;
    height: auto;
  }

  .custom-text-container {
    width: 100%; /* El texto ocupa todo el ancho */
    padding: 10px;
  }

  .custom-heading {
    font-size: 28px;
    text-align: center;
  }

  .custom-paragraph {
    font-size: 16px;
    text-align: left;
  }

  /* Botón - versión móvil */
  .custom-btn {
    display: inline-block; /* Ajusta el ancho al contenido */
    padding-left: 40%;
    font-size: 14px;
    padding: 10px 20px; /* Tamaño más compacto para móviles */
    text-align: center;
    margin-left: 30%;
    width: auto; /* El ancho se ajusta al contenido */
    align-items: center;
  }
}

@media (max-width: 480px) {
  .custom-heading {
    font-size: 24px;
  }

  .custom-paragraph {
    font-size: 14px;
  }

  /* Botón - versión móvil pequeña */
  .custom-btn {
      display: inline-block; /* Ajusta el ancho al contenido */
      font-size: 14px;
      text-align: center;
      margin-left: 20%;
      width: auto; /* El ancho se ajusta al contenido */
      align-items: center;
    }
  
}
/* Servicios*/

.container-icon-service2 {
  text-align: center;
  margin-bottom: 5px;
  padding-top: 40px;
}

.container-icon-service2 img {
  width: 70px; 
  height: auto;
  text-align: center;
}

.container-text-service2 {
  text-align: center;
  margin: 0 auto;
}
.container-icon-service3{
  text-align: center;

 
}
.container-text-service2 span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #3c004c; /* Color morado */
  margin: 0;
  position: relative;
  padding-bottom: 10px;
}

.container-text-service2 span::before,
.container-text-service2 span::after {
  content: '•';
  margin: 0 10px;
  color: #3c004c;
}

.container-text-service2 p {
  font-size: 16px;
  color: #333;
  margin-top: 10px;
  line-height: 1.5;
}

/*servicios */
.services {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f5f5f5; 
    padding: 20px;
}

.service-item {
    text-align: center;
    width: 20%; 
    margin: 10px;
    transform: translateX(-200px); 
    transition: transform 0.8s ease-out, opacity 0.8s ease-out; 
}
.service-item.show {
  opacity: 1; 
  transform: translateX(0); 
}

.service-item-icon {
    width: 50px; /* Ajustar tamaño del ícono */
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.service-item:hover .service-item-icon {
  transform: translateY(-20px); /* Mueve el ícono hacia arriba cuando el puntero se acerca */
}

.services-item-h3 {
    color: #3a0073; /* Color morado similar al texto en la imagen */
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.services-item-p {
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}
@media (max-width: 900px) {
  .services {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos se muevan a la siguiente línea si es necesario */
    justify-content: space-around;
    align-items: center;
    background-color: #f5f5f5;
    padding: 20px;
}

.service-item {
    text-align: center;
    width: 45%; /* Ajusta el ancho para que quepan dos elementos por línea en pantallas más pequeñas */
    margin: 10px;
    transition: transform 0.3s ease;
}
  .service-item {
      width: 100%; /* Hace que cada elemento ocupe toda la línea en pantallas pequeñas */
  }
}

.service-item-icon {
  width: 50px; 
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.service-item:hover .service-item-icon {
  transform: translateY(-10px); 
}

.services-item-h3 {
  color: #3a0073;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.services-item-p {
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

/* Estilos generales para la sección contenedora */
.container-AgenciamientoA {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 40px;
  max-width: 1200px;

}


.container-icon-AgenciamientoA, .container-icon-FletesI, .container-icon-FletesL {
  text-align: center;
  width: 300px; 
  height: 500px; 
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0; 
  transform: translateY(30px); 
  transition: transform 1s ease, opacity 1s ease, background-color 0.3s ease, color 0.3s ease; /* Agregado transición para el color */
}
.container-icon-AgenciamientoA.show, .container-icon-FletesI.show, .container-icon-FletesL.show {
  opacity: 1;
  transform: translateY(0); 
}

.container-icon-AgenciamientoA:hover, .container-icon-FletesI:hover, .container-icon-FletesL:hover {
  transform: translateY(-20px);
  background-color: #2C0648; 
  color: white; 
}

.container-icon-AgenciamientoA img, .container-icon-FletesI img, .container-icon-FletesL img {
  width: 80px;
  margin-bottom: 20px;
}

.container-text-AgenciamientoA, .container-text-FletesI, .container-text-FletesL {
  margin-bottom: 20px;
}

.container-text-AgenciamientoA span, .container-text-FletesI span, .container-text-FletesL span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #4c237e;
  margin-bottom: 10px;
  transition: color 0.3s ease; 
}

.container-text-AgenciamientoA p, .container-text-FletesI p, .container-text-FletesL p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  transition: color 0.3s ease; 
}
.container-icon-AgenciamientoA:hover .container-text-AgenciamientoA span, 
.container-icon-FletesI:hover .container-text-FletesI span, 
.container-icon-FletesL:hover .container-text-FletesL span,
.container-icon-AgenciamientoA:hover .container-text-AgenciamientoA p, 
.container-icon-FletesI:hover .container-text-FletesI p, 
.container-icon-FletesL:hover .container-text-FletesL p {
  color: white; 
}
button {
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #333;
}
.container-icon-AgenciamientoA:hover button, 
.container-icon-FletesI:hover button, 
.container-icon-FletesL:hover button {
  background-color: white;
  color: #2C0648; 
}

/* Ajustes responsivos */
@media (max-width: 900px) {
  .container-AgenciamientoA {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .container-icon-AgenciamientoA, .container-icon-FletesI, .container-icon-FletesL {
    width: 80%;
    margin-bottom: 30px;
    height: auto; 
  }

  .container-text-AgenciamientoA, .container-text-FletesI, .container-text-FletesL {
    text-align: center; 
  }

  button {
    display: block;
    margin: 0 auto; 
  }
}


/* Estilo para la sección contenedora */
.container-PolizasS {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px 20px 40px 20px;
  max-width: 1200px;
  
}

/* Estilo para cada contenedor individual con dimensiones fijas y desplazamiento inicial */
.container-icon-PolizasS, .container-icon-LogisticaI, .container-icon-BusquedaP {
  text-align: center;
  width: 300px; /* Ancho fijo de 300px */
  height: 500px; /* Alto fijo de 572px */
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0; /* Ocultos inicialmente */
  transform: translateY(60px); /* Desplazados más abajo para mayor efecto */
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Cuando el contenedor entra en la vista */
.container-icon-PolizasS.show, .container-icon-LogisticaI.show, .container-icon-BusquedaP.show {
  opacity: 1;
  transform: translateY(0); /* Vuelven a su posición original */
}

/* Estilos al hacer hover */
.container-icon-PolizasS:hover, .container-icon-LogisticaI:hover, .container-icon-BusquedaP:hover {
  transform: translateY(-10px);
  background-color: #2C0648; /* Cambia el fondo al color deseado */
  color: white; /* Cambia el texto a blanco */
}

/* Estilos para las imágenes dentro de los contenedores */
.container-icon-PolizasS img, .container-icon-LogisticaI img, .container-icon-BusquedaP img {
  width: 80px;
  margin-bottom: 20px;
}

/* Estilos para los textos dentro de los contenedores */
.container-text-PolizasS, .container-text-LogisticaI, .container-text-BusquedaP {
  margin-bottom: 20px;
  transition: color 0.3s ease; /* Transición suave para el color del texto */
}

.container-text-PolizasS span, .container-text-LogisticaI span, .container-text-BusquedaP span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #4c237e;
  margin-bottom: 10px;
}

.container-text-PolizasS p, .container-text-LogisticaI p, .container-text-BusquedaP p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.container-icon-PolizasS:hover .container-text-PolizasS span, 
.container-icon-LogisticaI:hover .container-text-LogisticaI span, 
.container-icon-BusquedaP:hover .container-text-BusquedaP span,
.container-icon-PolizasS:hover .container-text-PolizasS p, 
.container-icon-LogisticaI:hover .container-text-LogisticaI p, 
.container-icon-BusquedaP:hover .container-text-BusquedaP p {
  color: white; /* Cambia el color del texto a blanco */
}
/* Estilos para los botones */
button {
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #333;
}

.container-icon-PolizasS:hover button, 
.container-icon-LogisticaI:hover button, 
.container-icon-BusquedaP:hover button {
  background-color: white;
  color: #2C0648; /* Cambia el color del texto del botón al color del contenedor */
}

/* Ajustes responsivos */
@media (max-width: 900px) {
  .container-PolizasS {
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    padding: 0 20px 0 20px;
    
  }

  .container-icon-PolizasS, .container-icon-LogisticaI, .container-icon-BusquedaP {
    width: 80%;
    margin-bottom: 30px;
    height: auto; /* Ajusta la altura para pantallas más pequeñas */
  }
  .container-text-PolizasS, .container-text-LogisticaI, .container-text-BusquedaP {
    text-align: center; /* Centra el texto en dispositivos móviles */
  }
  button {
    display: block;
    margin: 0 auto; /* Centra el botón */
  }
}
.container-ComprasE{
  display: flex;
  justify-content: center; 
  padding: 20px 20px 40px 20px;
}
.container-icon-ComprasE {
  text-align: center;
  width: 300px; /* Ancho fijo de 300px */
  height: 500px; /* Alto fijo de 572px */
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.container-icon-ComprasE:hover {
  background-color: #2C0648; /* Cambia el fondo al color deseado */
  color: white; /* Cambia el texto a blanco */
  transform: translateY(-10px); /* Añade el efecto hover */
}

.container-icon-ComprasE img {
  width: 80px; /* Ajuste del tamaño del ícono */
  margin-bottom: 20px;
}

.container-text-ComprasE {
  margin-bottom: 20px;
}

.container-text-ComprasE span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #4c237e; /* Color púrpura del texto */
  margin-bottom: 10px;
  transition: color 0.3s ease; 
}

.container-text-ComprasE p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  transition: color 0.3s ease; 
}
.container-icon-ComprasE:hover .container-text-ComprasE span, 
.container-icon-ComprasE:hover .container-text-ComprasE p {
  color: white; /* Cambia el color del texto a blanco */
}

button {
  padding: 10px 30px; /* Botón más ancho */
  background-color: black;
  color: white;
  border: none;
  border-radius: 25px; /* Botón redondeado */
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}


button:hover {
  background-color: #333;
}
.container-icon-ComprasE:hover button {
  background-color: white;
  color: #2C0648; /* Cambia el color del texto del botón al color del contenedor */
}
/* Estilo responsive */
@media (max-width: 900px) {
  .container-ComprasE {
    flex-direction: column;
    align-items: center;
    padding: 0;
    padding: 0 20px;
  }
  .container-icon-ComprasE {
    width: 80%;
    margin-bottom: 20px;
    height: auto;
  }
  
}
/*Clientes */
.clients-title {
  text-align: center;
  justify-content: center;
  font-size: 24px;
  color: #3c004c; /* Color morado */
  position: relative;
  padding-bottom: 10px;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}


.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.client-icon-container {
  width: 100px; /* Puedes ajustar el ancho total de los contenedores si lo prefieres */
  display: inline-block;
  margin-right: 200px;
  transition: transform 0.3s;
  text-align: center; /* Centra las imágenes dentro de cada contenedor */
}

.client-icon-container img {
  width: 200px; /* Ancho uniforme para todas las imágenes */
  height: 200px; /* Alto uniforme para todas las imágenes */
  object-fit: contain; /* Esto asegura que las imágenes se ajusten sin deformarse */
}

.client-icon-container:hover {
  transform: scale(1.1);
}

/*Preguntas*/
.faq-section {
  background-image: linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.7)),
  url(./images/Leonardo_Phoenix_Create_a_highly_detailed_ultrarealistic_image_2.webp);
  position: relative;
  color: white;
  padding: 20px;
  font-family: Arial, sans-serif;
  width: auto;
  overflow: hidden; /* Asegura que el contenido no se salga del contenedor */
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 50px;
}

h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
  padding-left: 10%;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  background-color: transparent;
  border: none;
  color: white;
  text-align: left;
  width: 100%;
  padding: 10px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: left;
  padding-left: 10%;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.faq-answer {
  display: none;
  padding: 10px 0;
  font-size: 0.9em;
  padding-left: 15%;
}

.faq-answer p {
  margin: 0;
}
@media (max-width: 900px) {
  .faq-section {
    background-image: linear-gradient(
      rgba(0,0,0,0.7),
      rgba(0,0,0,0.7)),
    url(./images/Leonardo_Phoenix_Create_a_highly_detailed_ultrarealistic_image_2.webp);
    position: relative;
    color: white;
    padding: 20px;
    font-family: Arial, sans-serif;
    width: auto;
    overflow: hidden; /* Asegura que el contenido no se salga del contenedor */
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 50px;
  }
  
}

/*footer*/
.footer {
  background-color: white; /* Fondo blanco */
  padding: 40px 0;
  color: black; /* Texto negro */
}

.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  text-align: center;
  width: 25%;
}

.footer-logo-image {
  max-width: 100%;
  height: 140px;
}

.footer-description {
  display: flex;
  font-size: 14px;
  color: black;
  padding-bottom: 20%;
}

.footer-links, .footer-contact, .footer-about {
  width: 20%;
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: black;
}
.footer-title-ayuda {
  margin-left: 40px;
}

.footer-links-list {
  padding-top: 10px;
  list-style-type: none;
  margin-left: 40px;
}

.footer-link {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  color: black;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-contact-item {
  margin-bottom: 8px;
  color: black;
}

.footer-about-description {
  font-size: 14px;
  color: black;
}

.fa {
  margin-right: 8px;
}

.footer-bottom {
  background-color: #2C0648;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  margin-top: auto;
}

.footer-bottom p {
  margin: 0;
  font-size: 15px;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    width: 100%;
  }
  .footer-links,
  .footer-contact,
  .footer-about {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-description {
    font-size: 12px;
    text-align: center;
    flex-direction: column;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-links-list {
    margin-left: 0;
  }

  .footer-title-ayuda {
    margin-left: 0;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-contact-item {
    font-size: 14px;
  }

  .footer-about-description {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 14px;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .footer-logo-image {
    height: 100px;
  }

  .footer-title {
    font-size: 14px;
  }

  .footer-link,
  .footer-contact-item {
    font-size: 12px;
  }

  .footer-about-description {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}


/*Servicios css*/
/* General container styling */

@media (max-width: 768px) {
  .contact-navbar-socialmedia {
      flex-wrap: wrap; /* Los elementos se mantienen en línea y se ajustan */
      justify-content: center; /* Alinea todo en el centro en pantallas pequeñas */
      padding: 10px; /* Espaciado adecuado */
  }

  .contact-info {
      flex-wrap: wrap; /* Permite que el contenido se ajuste si es necesario */
      justify-content: center;
  }

  .social-links {
      gap: 15px; /* Ajusta el espacio entre los íconos para pantallas pequeñas */
      justify-content: center;
  }

  .icon-phone-social-media i,
  .icon-email-social-media i,
  .icon-location-social-media i {
      font-size: 14px; /* Ajuste de tamaño de íconos en pantallas pequeñas */
  }

}
.WA_Chat_Widget *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
@keyframes jump {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-20px); /* Primer salto */
  }
  40% {
    transform: translateY(0); /* Pausa después del primer salto */
  }
  60% {
    transform: translateY(-20px); /* Segundo salto */
  }
  80% {
    transform: translateY(0); /* Pausa después del segundo salto */
  }
  100% {
    transform: translateY(-20px); /* Tercer salto */
  }
}

.WA_Chat_Widget .WA_FloatingButton{
  position: fixed;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.185);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animación */
}
.WA_Chat_Widget .WA_FloatingButton.jump {
  animation: jump 1.5s ease; /* Duración total para 3 saltos */
}
.WA_Chat_Widget .WA_FloatingButton.stop-jump {
  animation: none;
}
.WA_Chat_Widget .WA_FloatingButton svg{
  width: 40px;
  height: 40px;
  fill: #4fce5d;
}
.WA_Chat_Widget .WA_FloatingButton:hover {
  transform: scale(1.1); /* Efecto de agrandar */
  box-shadow: 0 6px 15px 0px rgba(0, 0, 0, 0.3); /* Sombra más grande */
}
.WA_Chat_Widget[data-position^="top-"] .WA_FloatingButton{
  top: 20px;
}
.WA_Chat_Widget[data-position^="bottom-"] .WA_FloatingButton{
  bottom: 20px;
}
.WA_Chat_Widget[data-position$="-left"] .WA_FloatingButton{
  left: 20px;
}
.WA_Chat_Widget[data-position$="-right"] .WA_FloatingButton{
  right: 20px;
}
.WA_Chat_Widget[data-position$="-center"] .WA_FloatingButton{
  left: 50%;
  transform: translateX(-50%);
}

.WA_Chat_Widget[data-position^="top-"] .WA_ChatBox{
  top: 110px;
}
.WA_Chat_Widget[data-position^="bottom-"] .WA_ChatBox{
  bottom: 110px;
}
.WA_Chat_Widget[data-position$="-left"] .WA_ChatBox{
  left: 30px;
}
.WA_Chat_Widget[data-position$="-right"] .WA_ChatBox{
  right: 30px;
}
.WA_Chat_Widget[data-position$="-center"] .WA_ChatBox{
  left: 50%;
  transform: translateX(-50%);
}


.WA_Chat_Widget .WA_ChatBox{
  position: fixed;
  width: 360px;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 5px 25px 0px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 2000; 
  transition: opacity 0.4s ease, transform 0.4s ease; /* Animación al abrir */
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header{
  width: auto;
  background: #095e54;
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .avatarBox{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .avatarBox img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .infoBox .name{
  color: #fff;
  font-weight: 600;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .infoBox .answer_time{
  color: #e4e4e4;
  font-size: 14px;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .WA_Close{
  background: transparent;
  color: #fff;
  border: none;
  outline: none;
  font-size: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .WA_Close svg{
  fill: #ffff;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body{
  padding: 20px;
  position: relative;
}
.WA_ChatBox_Body {
  background: url(./images/fondo-whatsapp.jpeg) no-repeat center center;
  background-size: cover; /* Esto asegura que la imagen de fondo cubra el área sin estirarse */
  position: absolute;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body::before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url(./bg-pattern.png);
  opacity: 0.1;
  z-index: 0;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message{
  max-width: 280px;
  background: #fff;
  padding: 20px;
  padding-top: 10px;
  border-radius: 8px;
  z-index: 1;
  position: relative;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message::before{
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  left: -10px;
  top: 0px;
  border-radius: 3px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message .username{
  color: darkgray;
  font-weight: 500;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message .message_content{
  font-size: 14px;
  color: #000;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer{
  padding: 20px;
  background-color: #fff;
  width: 100%;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer .btn{
  width: 100%;
  outline: none;
  border: none;
  padding: 10px;
  border-radius: 1000px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer .btn.btn-whatsapp{
  background: #095e54;
  color: #fff;
  display: block;
  text-align: center;
}
.section-contact {
  display: flex;
  height: 100vh;
}

.container-map {
  width: 50%;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.container-contact-form {
  width: 50%;
  background-color: #2C0648;
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-description {
  font-size: 16px;
  margin-bottom: 20px;
}

.container-contact-info {
  margin-bottom: 20px;
}

.contact-email, .contact-phone {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.icon-email, .icon-phone {
  margin-right: 10px;
}

.contact-email-link {
  color: white;
  text-decoration: none;
}

.contact-phone-number {
  margin: 0;
}

.contact-form-instruction {
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.input-name, .input-email, .input-phone, .input-message {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: none;
}

.input-message {
  resize: vertical;
  height: 100px;
}

.button-submit {
  background-color: black;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-submit {
  margin-left: 10px;
}

.button-submit:hover {
  background-color: #c22c2c;
}
@media (max-width: 768px) {
  .section-contact {
    flex-direction: column;
    height: auto;
  }

  .container-map{
    width: 100%;
    height: 50vh;
   
  }
  .container-contact-form {
    width: 100%;
    height: 100vh;
    
  }

  .container-contact-form {
    padding: 20px;
  }

  .contact-title {
    font-size: 28px;
    margin-bottom: 15px;
    padding-top: 50px;
  }

  .contact-description {
    font-size: 14px;
   
  }

  .contact-form-instruction {
    font-size: 14px;
  }

  .input-name, .input-email, .input-phone, .input-message {
    font-size: 14px;
    padding: 8px;
  }

  .button-submit {
    font-size: 14px;
    padding: 12px;
    height: auto;
  }

  .map-frame {
    height: 100%;
    padding-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 24px;
  }

  .contact-description,
  .contact-form-instruction {
    font-size: 12px;
  }

  .input-name, .input-email, .input-phone, .input-message {
    font-size: 12px;
    padding: 6px;
  }

  .button-submit {
    font-size: 12px;
    padding: 10px;
  }

  .map-frame {
    height: 50vh;
    padding-bottom: 10px;
  }
}

/*container 2*/
.hero-section-container2 {
  position: relative;
  height: 100vh;
  background-image: url('./images/venti-views-FPKnAO-CF6M-unsplash.webp'); /* Aquí pones la ruta de tu imagen */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section-container3 {
  position: relative;
  height: 100vh;
  background-image: url('./images/wonderlane-BqPB1vdg3zw-unsplash.webp'); /* Aquí pones la ruta de tu imagen */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.hero-section-container4 {
  position: relative;
  height: 100vh;
  background-image: url('./images/olga-subach-Zuxxq0iHkN4-unsplash.webp'); /* Aquí pones la ruta de tu imagen */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.hero-section-container5 {
  position: relative;
  height: 100vh;
  background-image: url('./images/alex-duffy-a-E__y8y5Wo-unsplash-1.webp'); /* Aquí pones la ruta de tu imagen */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.hero-section-container6 {
  position: relative;
  height: 100vh;
  background-image: url('./images/wolfgang-weiser-W_4Vc9rUw6A-unsplash\ \(2\).webp'); /* Aquí pones la ruta de tu imagen */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.hero-section-container7 {
  position: relative;
  height: 100vh;
  background-image: url('./images/logan-voss-IVG8SDczupk-unsplash.webp'); /* Aquí pones la ruta de tu imagen */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Efecto de oscurecimiento */
}

.content2 {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.section-title2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: left;
  padding-left: 0;
}

.parraph-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  text-align: left;
}

.btn-contact {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: #333;
}
@media screen and (max-width: 1024px) {
  .hero-section-container2, .hero-section-container3 {
    height: 80vh; /* Disminuir el alto en pantallas más pequeñas */
  }

  .section-title2 {
    font-size: 2rem; /* Ajustar tamaño de título */
    text-align: center; /* Centrar el texto */
  }

  .parraph-description {
    font-size: 1rem; /* Ajustar tamaño de texto */
    text-align: center; /* Centrar la descripción */
  }

  .btn-contact {
    font-size: 0.9rem; /* Reducir tamaño del botón */
    padding: 8px 16px;
  }
}

/* Para móviles o pantallas pequeñas */
@media screen and (max-width: 768px) {
  .hero-section-container2, .hero-section-container3 {
    height: 70vh; /* Reducir aún más el alto para móviles */
  }

  .section-title2 {
    font-size: 1.8rem; /* Tamaño del título más pequeño */
    text-align: center;
  }

  .parraph-description {
    font-size: 0.9rem; /* Texto más pequeño para móviles */
    max-width: 90%; /* Aumentar el área de texto */
    text-align: center;
  }

  .btn-contact {
    font-size: 0.8rem; /* Botón más pequeño */
    padding: 6px 12px;
  }
}

/* Para pantallas muy pequeñas (moviles más pequeños, < 480px) */
@media screen and (max-width: 480px) {
  .hero-section-container2, .hero-section-container3 {
    height: 60vh; /* Reducir el alto para móviles más pequeños */
  }

  .section-title2 {
    font-size: 1.5rem; /* Título aún más pequeño */
    text-align: center;
  }

  .parraph-description {
    font-size: 0.8rem; /* Texto más pequeño */
    max-width: 100%; /* Ampliar aún más el área de texto */
    text-align: center;
  }

  .btn-contact {
    font-size: 0.7rem; /* Botón más pequeño */
    padding: 5px 10px;
  }

}
.quienes-somos-container {
  background-color: white;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  margin-bottom: 100px;
}

.quienes-somos-container::before {
  content: '';
  background-image: url('./images/Leonardo_Phoenix_crea_una_imagen_donde_este_un_barco_de_cCrea_3.webp'); /* Puedes usar una imagen similar al fondo */
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 1;
  background-attachment: fixed;
  
}

.quienes-somos-container-text {
  position: relative;
  z-index: 2;
  max-width: auto;
  margin: 0 auto;
}

.quienes-somos-h2{
  font-size: 2.5rem;
  color: #2C0648;
  margin-bottom: 20px;
  padding-left: 0;
  padding-top: 5%;
}

.quienes-somos-p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.ventajas {
  background-color: #2c2c2c;
  color: white;
  padding: 50px 0;
  text-align: center;
  
}

.ventajas h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #ffffff;
  padding-left: 0;
}

.ventajas-contenedor {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.ventaja {
  max-width: 500px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.icono {
  margin-bottom: 20px;
}

.icono img {
  width: 80px;
  height: 80px;
}

.ventaja h2 {
  font-size: 1.5rem;
  color: #000000;
  text-align: center;
  justify-content: center;
}

.ventaja p {
  font-size: 1rem;
  color: #7e7e7e;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .ventajas {
    padding: 30px 0;
  }

  .ventajas h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .ventajas-contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .ventaja {
    max-width: 100%;
    padding: 15px;
  }

  .ventaja h2 {
    font-size: 1.25rem;
  }

  .ventaja p {
    font-size: 0.9rem;
  }

  .icono img {
    width: 60px;
    height: 60px;
  }
}


/*Agenciamiento de aduana */
/* Sección principal de servicios */
.service-section3 {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

/* Contenedor para la imagen y el texto */
.service-container3 {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

/* Contenedor de la imagen */
.service-image-container3 {
  flex: 1;
  padding-right: 40px;
}

.service-image3 {
  width: 100%;
  height: auto;
  object-fit: cover;
  padding-left: 20px;
}

/* Contenedor de texto */
.service-text-container3 {
  flex: 1;
  padding-left: 10px;
}

.service-category3 {
  color: #007bff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 10px;
  padding-left: 10px;
}

.service-title3 {
  font-size: 36px;
  font-weight: bold;
  color: #1f2d56;
  margin-bottom: 15px;
}

.service-description3 {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.7;
  max-width: 500px;
}

/* Nueva clase para invertir el orden en la segunda sección */
.reverse-row {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .service-container3 {
    flex-direction: column; /* Cambia a columna */
    align-items: center; /* Centra los elementos en móvil */
    padding-left: 20px;
    padding-right: 10px;
  }

  .service-image-container3 {
    /* Quitar el padding en móvil */
    margin-bottom: 20px; /* Añadir espacio debajo de la imagen */
  }

  .service-text-container3 {
    padding-right: 20px;
    max-width: 100%; /* Permite que el texto ocupe el ancho completo */
  }
}