
/* ----------------- HEADER----------------- */
.header-general {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.header-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/Imagenes/ImagenServiciosHeader.jpg') no-repeat center center/cover;
    filter: blur(3px); 
    z-index: 0;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 62, 128, 0.6);
    z-index: 1;
}

.header-content {
    position: absolute;
    top: 40%;
    left: 15%;
    transform: translateY(-50%);
    color: white;
    text-align: left;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px); 
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'VTF Justina', sans-serif;
    opacity: 0; 
    animation: fadeInUp 1s ease-out forwards; 
}
    
.underline {
    width: 100px;
    height: 3px;
    background-color: #48b2e8;
    margin-bottom: 20px;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(650px); 
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.breadcrumb {
    font-size: 15px;
    color: #ffffff;
    opacity: 0.8;
    display: flex;
    align-items: center;
    margin-top: 5px;
    font-family: 'Slate', sans-serif;
    opacity: 0; 
    animation: fadeInRight 1s ease-out 0.5s forwards;
}

.breadcrumb i{
    font-size: 15px; 
    margin: 0 8px; 
    color: #48b2e8; 
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.breadcrumb a:hover {
    color: #F8A22F;
}

.breadcrumb span {
    margin-left: 5px;
}

/* ---------- SECCIÓN SEND PACKAGE ---------- */
.send-package-anywhere {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    background-color: #fff;
}

.package-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    padding-left: 200px;
    width: 100%;
    gap: 50px;
}

.package-texto {
    flex: 1;
    text-align: left;
    max-width: 450px;
}

.package-texto h2 {
    font-family: 'VTF Justina', sans-serif;
    font-size: 36px;
    color: #146ab5;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.package-texto h2.visible {
    opacity: 1;
    transform: translateY(0);
}

.package-underline {
    width: 95px;
    height: 4px;
    background-color: #48b2e8;
    margin-bottom: 20px;
}

.package-texto p {
    font-family: 'SlateLight', sans-serif;
    font-size: 14px;
    color: #626262;
    line-height: 1.5;
    margin-bottom: 15px;
}

.package-botones {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.package-btn-naranja {
    background: linear-gradient(to right, #FFA726, #FF7B2C);
    color: white;
    font-family: 'SlateLight', sans-serif;
    font-size: 13px;
    padding: 12px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease, transform 0.3s ease; 
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.package-btn-naranja.visible{
    opacity: 1;
    transform: translateY(0);
}


.package-btn-naranja:hover {
    background: linear-gradient(to right, #FF7B2C, #ffc526);
    transform: translateY(-5px);
}

.package-btn-link {
    font-family: 'SlateLight', sans-serif;
    font-size: 14px;
    color: #FF7B2C;
    text-decoration: none;
}

.package-btn-link:hover {
    color: #FFA726;
}

.package-imagenes {
    flex: 1;
    display: flex;
    flex-direction: row; 
    gap: 10px; 
    align-items: flex-end; 
    justify-content: flex-start; 
    width: 50%;
    max-width: 650px;
    margin-top: 75px;
}

.package-imagen-superior {
    width: 50%;
    margin-right: 10px;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.package-imagen-superior.visible{
    opacity: 1;
    transform: translateY(0);
}

.package-imagen-superior img {
    width: 100%;
    height: 300px; 
    object-fit: cover; 
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

.package-imagen-inferior {
    width: 90%;
    margin-left: 10px; 
    opacity: 0;
    transform: translateY(200px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.package-imagen-inferior.visible{
    opacity: 1;
    transform: translateY(0);
}

.package-imagen-inferior img {
    width: 100%;
    height: 390px; 
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .send-package-anywhere {
        padding: 40px 20px;
    }

    .package-container {
        flex-direction: column;
        padding-left: 0;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .package-texto {
        max-width: 100%;
        text-align: center;
    }

    .package-botones {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .package-btn-naranja {
        width: 100%;
        justify-content: center;
    }

    .package-imagenes {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        gap: 20px;
    }

    .package-imagen-superior,
    .package-imagen-inferior {
        width: 100%;
        margin: 0;
    }

    .package-imagen-superior img,
    .package-imagen-inferior img {
        width: 100%;
        height: auto;
        max-height: 350px;
    }
}


/* ---------- SECCIÓN SHIPPING DESTINATIONS ---------- */
.shipping-destinations {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 90px 0;
    background-color: #fff;
}

.shipping-container {
    display: flex;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    gap: 50px;
}

.shipping-image {
    flex: 1;
    opacity: 0;
    transform: translateX(-200px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.shipping-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.shipping-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

.shipping-text {
    flex: 1;
    text-align: left;
}

.shipping-text h2 {
    font-family: 'VTF Justina', sans-serif;
    font-size: 36px;
    color: #146ab5;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.shipping-text h2.visible{
    opacity: 1;
    transform: translateY(0);
}

.shipping-underline {
    width: 80px;
    height: 3px;
    background-color: #48b2e8;
    margin-bottom: 20px;
}

.shipping-text p {
    font-family: 'SlateLight', sans-serif;
    font-size: 14px;
    color: #626262;
    line-height: 1.5;
    margin-bottom: 15px;
}

.shipping-list {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    width: 100%;
}

.shipping-list ul {
    list-style: none;
    padding: 0;
}

.shipping-list li {
    font-family: 'SlateLight', sans-serif;
    font-size: 14px;
    color: #626262;
    line-height: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shipping-list li i {
    color: #48b2e8;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .shipping-destinations {
        padding: 50px 20px; 
    }

    .shipping-container {
        flex-direction: column; 
        gap: 20px;
        text-align: center;
    }

    .shipping-image {
        width: 100%; 
        max-width: 400px; 
        margin: 0 auto;
    }

    .shipping-text {
        width: 100%;
        text-align: center;
    }

    .shipping-text h2 {
        font-size: 28px; 
    }

    .shipping-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 100%;
        width: 100%;
    }

    .shipping-list ul {
        width: 48%; 
        padding: 0;
        list-style: none;
    }

    .shipping-list li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: 'SlateLight', sans-serif;
        font-size: 14px;
        color: #626262;
        line-height: 2;
    }

    .shipping-list li i {
        color: #48b2e8;
        font-size: 16px;
    }
}

/* ---------- SECCIÓN WE PICK THEM FOR YOU ---------- */
.pick-them-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    background-color: #fff;
}

.pick-them-container {
    display: flex;
    flex-direction: row; 
    align-items: center;
    max-width: 1000px;
    width: 100%;
    gap: 50px;
}

.pick-them-image {
    flex: 1;
    max-width: 500px; 
    opacity: 0;
    transform: translateX(150px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.pick-them-image.visible{
    opacity: 1;
    transform: translateX(0px);
}

.pick-them-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

.pick-them-text {
    flex: 1;
    text-align: left;
    max-width: 500px;
    margin-top: -120px;
}

.pick-them-text h2 {
    font-family: 'VTF Justina', sans-serif;
    font-size: 36px;
    color: #146ab5;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.pick-them-text h2.visible{
    opacity: 1;
    transform: translateY(0px);
}

.pick-them-underline {
    width: 80px;
    height: 3px;
    background-color: #48b2e8;
    margin-bottom: 20px;
}

.pick-them-text p {
    font-family: 'SlateLight', sans-serif;
    font-size: 14px;
    color: #626262;
    line-height: 1.5;
    margin-bottom: 15px;
}

.pick-them-list {
    display: flex;
    justify-content: space-between;
    max-width: 500px;
    width: 100%;
}

.pick-them-list ul {
    list-style: none;
    padding: 0;
}

.pick-them-list li {
    font-family: 'SlateLight', sans-serif;
    font-size: 14px;
    color: #626262;
    line-height: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 2.5;
}

.pick-them-list li i {
    color: #48b2e8;
    font-size: 16px;
}

@media (max-width: 768px) {
    .pick-them-section {
        padding: 40px 0 20px 0; /* Reduce el padding superior e inferior */
    }

    .pick-them-container {
        flex-direction: column;
        text-align: center;
        gap: 10px; 
        padding: 20px 15px; 
        margin-top: -20px;
    }
    .pick-them-text {
        max-width: 90%;
        margin: 0 auto; 
        text-align: left;
    }

    .pick-them-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 5px; 
    }

    .pick-them-list ul {
        width: 48%; 
        padding: 0;
        margin: 0;
    }

    .pick-them-list li {
        font-size: 14px; 
        line-height: 2.4; 
    }

    .pick-them-image {
        max-width: 100%;
        margin-top: 20px; 
    }

    .pick-them-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
}


/* ---------- CONTACT US ---------- */
.section-contactusCourier {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-color: #f7f7f7;
    padding-bottom: 150px;
}

.contenedor-contactusCourier {
    display: flex;
    align-items: center;
    justify-content: center; 
    max-width: 1050px; 
    width: 100%;
    gap: 50px;
    margin: 0 auto;
    background: #f7f7f7;
    border-radius: 10px;
    position: relative;
}

.texto-contactusCourier {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.texto-contactusCourier h2 {
    font-family: 'VTF Justina', sans-serif;
    font-size: 36px;
    color: #146ab5;
    margin-bottom: 10px;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.texto-contactusCourier h2.visible{
    opacity: 1;
    transform: translateY(0px);
}


.subrayado-contactusCourier {
    width: 80px;
    height: 3px;
    background-color: #48b2e8;
    margin-bottom: 20px;
}

.texto-contactusCourier p {
    font-family: 'SlateLight', sans-serif;
    font-size: 14px;
    color: #626262;
    line-height: 1.5;
    margin-bottom: 15px;
}

.formulario-contactusCourier {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    border-radius: 10px;
    margin-top: 110px;
}

.formulario-contactusCourier input {
    width: 100%;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'SlateLight', sans-serif;
    color: #333;
}

.formulario-contactusCourier input::placeholder {
    color: #aaa;
}

.btn-contactusCourier {
    width: 50%;
    background: linear-gradient(to right, #ffc526, #FF7B2C);
    color: white;
    font-family: 'SlateLight', sans-serif;
    font-size: 14px;
    padding: 10px;
    border: none;
    border-radius: 20px;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-contactusCourier:hover {
    background: linear-gradient(to right, #FF7B2C, #ffc526);
}

@media (max-width: 768px) {
    .section-contactusCourier {
        padding: 40px 0 60px 0; 
    }

    .contenedor-contactusCourier {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 10px; 
    }

    .texto-contactusCourier {
        max-width: 100%;
        text-align: left;
        padding: 0 15px;
    }

    .texto-contactusCourier h2 {
        font-size: 28px; 
        text-align: left;
        margin-bottom: 5px;
    }

    .subrayado-contactusCourier {
        width: 80px;
        height: 3px;
        background-color: #48b2e8;
        margin-bottom: 15px;
    }

    .texto-contactusCourier p {
        font-size: 14px;
        line-height: 1.5;
        text-align: left;
        margin-bottom: 10px; 
    }

    .formulario-contactusCourier {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0;
        margin-top: 0; 
    }

    .formulario-contactusCourier input {
        width: 100%;
        padding: 12px;
        border: 1px solid transparent;
        border-radius: 5px;
        font-size: 14px;
    }

    .btn-contactusCourier {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        text-align: center;
    }
}


