.Hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Hero .container {
    position: relative;
    z-index: 100;
}

/* Estilo del video */
.Hero__video {
    position: absolute;
    top: 33%;
    left: 50%;
    width: 100%;
    height: 68%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* Overlay opcional */
.Hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 67%;
  background: rgba(0, 0, 0, 0.4); /* Oscurece el video */
  z-index: 2;
}

.oea-logo {
    width: 97px !important;
}

.About-us {
    padding-top: 10px;
    background-color: #F7F8FF;
}
.About-us ul {
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.About-us a {
    margin: 5px 0px 24px;
}

.About-us ul li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    list-style: outside;
}

.Choose-us p {
    margin-bottom: 1em;
}

@media (max-width: 991px) {
    .Logistics {
        text-align: center;
        background-attachment: unset;
            background-position: 37% 50%;
    }

    .Choose-us figure {
        margin-top: 60px;
    }

    .About-us ul {
        margin-left: 0;
    }

    .About-us ul li {
        list-style: none;
    }
}


.call-phone-btn {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(1.3);
    box-sizing: content-box;
    display: block;
    width: 16px;
    height: 27px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
    background-color: #FFF;
    cursor: pointer;
}

.call-phone-btn:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: linear-gradient(60deg, rgb(241, 241, 241) 0%, rgba(255, 205, 6, 0.6) 100%);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.call-phone-btn:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 200ms;
}

.call-phone-btn span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0px;
    height: 0px;
    font-size: 30px;
    left: -4px;
    top: -3px;
    color: #223754;
    transform: translateX(-0.2em);
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.page-about-us {
    padding-top: 65px;
}

.navbar .nav-link.active {
    text-decoration: underline;
    color: #223754;
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 12px 12px 24px;
    background-color: #223754;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    gap: 0; /* El espacio inicial entre texto e icono será 0 */
    overflow: hidden;
}

/* Icono: mismo espacio reservado, pero oculto */
.contact-btn i {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, margin-left 0.3s ease;
    margin-left: 0; /* Inicialmente sin espacio */
}

/* Hover: cambia color */
.contact-btn:hover {
    background-color: #1b2c44;
    padding: 12px 24px 12px 24px;
}

/* Hover: animamos flecha y agregamos espacio suavemente */
.contact-btn:hover i {
    opacity: 1;
    transform: translateX(0);
    margin-left: 8px; /* Aparece espacio junto con la flecha */
}

header .contact-btn {
    padding: 12px 24px 12px 24px !important;
}

header .contact-btn i {
    display: none;
}

header .contact-btn:hover {
    background-color: #1b2c44 !important;
}

.testimonial-section .author-info {
    text-align: left;
}

.testimonial-section .swiper-button-disabled {
    opacity: 0 !important;
}

@media (max-width: 480px) {
    header .contact-btn {
        display: none;
    }
}

aside #sideNav {
    z-index: 1000000 !important;
    background-color: #FFF !important;
    box-shadow: 5px 7px 20px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: 5px 7px 20px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 5px 7px 20px 0px rgba(0,0,0,0.75);
}