@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

/* ========================= */
/* BASE */
/* ========================= */

html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Inter', sans-serif;
    background: #0f1115;
    color: rgba(255,255,255,0.88);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

section{
    position: relative;
    letter-spacing: 0.1px;
    scroll-margin-top: 120px;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 4px 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    z-index: 1000;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo img{
    height: 100px;
}

nav ul{
    display: flex;
    gap: 35px;
    margin-left: auto;
    list-style: none;
}

nav ul a{
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

nav ul a:hover{
    color: #ff7a00;
}

/* ========================= */
/* TIPOGRAFÍA */
/* ========================= */

h1{
    font-size: clamp(44px, 5vw, 90px);
    font-weight: 700;
    letter-spacing: -1.2px;
    line-height: 1.05;
    color: white;
}

h2{
    font-size: clamp(28px, 3vw, 52px);
    font-weight: 600;
    letter-spacing: -0.6px;
    line-height: 1.2;
    color: white;
}

h3{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.2px;
    color: white;
}

span{
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(255,122,0,0.9);
}

p{
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    color: rgba(255,255,255,0.72);
}

/* ========================= */
/* HERO */
/* ========================= */

header{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    background-image:
    linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.30)),
    url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=2070&q=80');

    background-size: cover;
    background-position: center;
}

.hero-content h1{
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 24px;
    color: #d7d7d7;
    margin-bottom: 20px;
}

.hero-cta{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

.cta-primary{
    background: #ff7a00;
    color: white;
    padding: 16px 34px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-primary:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,122,0,0.25);
}

.cta-link{
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 15px;
    position: relative;
}

.cta-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #ff7a00;
    transition: 0.3s;
}

.cta-link:hover::after{
    width: 100%;
}

/* VIDEO HERO */

.hero-video{
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}

/* OSCURECE EL VIDEO */



/* TEXTO ARRIBA DEL VIDEO */

.hero-content{
    position: relative;
    z-index: 3;
}

/* ========================= */
/* ABOUT */
/* ========================= */

.about{
    padding: 80px 10%;
    background: #11151b;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.about::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,122,0,0.25), transparent);
}

.about-text{
    flex: 1;
}

.about-text h2{
    margin: 20px 0;
}

.about-cards{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.card{
    background: rgba(255,255,255,0.03);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
}

.card h3{
    color: #ff7a00;
    font-size: 42px;
}

/* ========================= */
/* PROCESS */
/* ========================= */

.process-section{
    padding: 80px 10%;
    background: #11151b;
}

.process-section::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,122,0,0.25), transparent);
}

.process-container{
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.process-container .section-title{
    margin-bottom: 50px;
}

.process-container .section-title p{
    max-width: 700px;
    margin: auto;
}

.process-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.process-card{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 30px;
    transition: 0.3s;
}

.process-card:hover{
    transform: translateY(-6px);
    border-color: #ff7a00;
}

.step{
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border-radius: 10px;
    background: #ff7a00;
    color: black;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card h3{
    color: #ff7a00;
    margin-bottom: 10px;
}

.process-card p{
    font-size: 14px;
    color: #c9c9c9;
}

/* ========================= */
/* SERVICES */
/* ========================= */

.services{
    padding: 80px 10%;
}

.services::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,122,0,0.25), transparent);
}

.services-title{
    text-align: center;
    margin-bottom: 55px;
}

.services-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 25px;
}

.service-card{
    cursor: pointer;
    background: rgba(255,255,255,0.03);
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.3s;
}

.service-card:hover{
    transform: translateY(-8px);
    border-color: #ff7a00;
}

.service-icon{
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,122,0,0.12);
    border-radius: 18px;
    font-size: 32px;
    margin-bottom: 25px;
}

.service-card h3{
    color: #ff7a00;
    margin-bottom: 15px;
}

.service-card p{
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
}

/* ========================= */
/* LOCATION - ORIGINAL FIXED */
/* ========================= */

.location-section{
    padding: 85px 10%;
    background: #0d1015;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.location-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* MAPA */

.location-map{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    height: 420px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transition: 0.3s;
}

.location-map iframe{
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(10%) contrast(1.1);
    transition: 0.4s;
}

.location-map:hover iframe{
    transform: scale(1.05);
}

.map-overlay{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: 0.3s;
}

.location-map:hover .map-overlay{
    opacity: 1;
}

/* INFO */

.location-info span{
    color: #ff7a00;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
}

.location-info h2{
    font-size: 44px;
    margin: 15px 0;
}

.location-info p{
    color: #c9c9c9;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* CONTACT CARDS - RESTAURADO */

.contact-cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.contact-card{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 20px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.contact-card:hover{
    transform: translateY(-6px);
    border-color: #ff7a00;
}

.contact-card h3{
    margin-bottom: 5px;
    color: white;
}

.contact-card p{
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}

.contact-card a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: white;
    text-decoration: none;
    background: #25D366;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    transition: 0.3s;
    width: fit-content;
}

.contact-card a:hover{
    transform: scale(1.05);
}

/* TERCERA CARD CENTRADA */

.contact-cards .contact-card:nth-child(3){
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
}

/* ICONOS */

.wa-icon{
    width: 18px !important;
    height: 18px !important;
    margin-right: 0;
    vertical-align: middle;
}

.gmail-icon{
    width: 18px !important;
    height: 18px !important;
    margin-right: 8px;
    vertical-align: middle;
}

/* EMAIL ORIGINAL RESTAURADO */

.email-box{
    margin-top: 20px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.email-box span{
    display: block;
    font-size: 12px;
    color: #ff7a00;
    margin-bottom: 6px;
}

.email-box a{
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.email-box.gmail{
    background: rgba(219,68,55,0.08);
    border: 1px solid rgba(219,68,55,0.25);
}

/* ========================= */
/* CONTACTO FINAL PREMIUM */
/* ========================= */

.service-detail{
    padding: 85px 10%;
    background: #0f1115;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.detail-text{
    max-width: 760px;
    margin-bottom: 35px;
}

.detail-text span{
    color: #ff7a00;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.detail-text h2{
    font-size: 42px;
    margin: 18px 0;
    line-height: 1.2;
}

.detail-text p{
    color: #bdbdbd;
    line-height: 1.8;
    font-size: 16px;
}

/* ========================= */
/* CONTACT FORM PREMIUM */
/* ========================= */

.contact-form{
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 35px;
    backdrop-filter: blur(10px);
}

.contact-form h3{
    text-align: center;
    margin-bottom: 25px;
    color: #ff7a00;
    font-size: 24px;
}

.contact-form form{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 14px 16px;
    border-radius: 12px;
    color: white;
    font-size: 14px;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline: none;
    border-color: rgba(255,122,0,0.7);
    box-shadow: 0 0 0 4px rgba(255,122,0,0.08);
}

.contact-form textarea{
    min-height: 130px;
    resize: vertical;
}

.contact-form button{
    margin-top: 5px;
    background: #ff7a00;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-form button:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,122,0,0.25);
}

/* ========================= */
/* WHATSAPP FLOAT */
/* ========================= */

.whatsapp-float{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    z-index: 9999;
    transition: 0.3s ease;
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover{
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37,211,102,0.35);
}

.whatsapp-float img{
    width: 34px;
    height: 34px;
}

@keyframes whatsappPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0.45);
    }

    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* ========================= */
/* SEPARACIÓN MÁS COMPACTA */
/* ========================= */

.about,
.services,
.process-section{
    padding-top: 85px;
    padding-bottom: 85px;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 900px){

    .location-container{
        grid-template-columns: 1fr;
    }

    .contact-cards{
        grid-template-columns: 1fr;
    }

    .contact-cards .contact-card:nth-child(3){
        width: 100%;
    }

    .location-map{
        height: 320px;
    }

    .process-grid{
        grid-template-columns: 1fr;
    }

    .whatsapp-float{
        width: 58px;
        height: 58px;
        right: 18px;
        bottom: 18px;
    }

    .whatsapp-float img{
        width: 30px;
        height: 30px;
    }

    .detail-text h2{
        font-size: 34px;
    }
}


/* ========================= */
/* FOOTER FINAL COMEX RYD */
/* ========================= */

.footer{
    background:
    linear-gradient(
        180deg,
        #0d1015 0%,
        #0a0c11 100%
    );

    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

/* glow suave naranja */

.footer::before{
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    background: radial-gradient(
        circle,
        rgba(255,122,0,0.08),
        transparent 70%
    );

    left: -180px;
    bottom: -180px;

    pointer-events: none;
}

/* ========================= */
/* CONTAINER */
/* ========================= */

.footer-container{
    width: 100%;
    max-width: 1200px;

    margin: auto;

    padding: 70px 10% 55px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 70px;

    position: relative;
    z-index: 2;
}

/* ========================= */
/* LOGO */
/* ========================= */

.footer-logo{
    display: flex;
    align-items: center;
}

.footer-logo img{
    width: 260px;
    object-fit: contain;

    opacity: 0.96;

    filter:
    drop-shadow(0 0 25px rgba(255,255,255,0.03));
}

/* ========================= */
/* TITULOS */
/* ========================= */

.footer h3{
    color: #ff7a00;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2.5px;

    margin-bottom: 28px;
}

/* ========================= */
/* LINKS */
/* ========================= */

.footer-links{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a{
    color: rgba(255,255,255,0.72);

    text-decoration: none;

    font-size: 14px;
    font-weight: 400;

    transition: 0.25s ease;
}

.footer-links a:hover{
    color: white;
    transform: translateX(5px);
}

/* ========================= */
/* CONTACTO */
/* ========================= */

.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-item{
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-item:last-child{
    border-bottom: none;
    padding-bottom: 0;
}

.footer-item span{
    display: block;

    color: rgba(255,255,255,0.42);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.8px;

    margin-bottom: 8px;
}

.footer-item a{
    color: rgba(255,255,255,0.82);

    text-decoration: none;

    font-size: 14px;

    transition: 0.25s ease;
}

.footer-item a:hover{
    color: #ff7a00;
}

.footer-item p{
    color: rgba(255,255,255,0.62);

    line-height: 1.7;
    font-size: 14px;
}

/* ========================= */
/* REDES */
/* ========================= */

.footer-social{
    display: flex;
    flex-direction: column;
    gap: 18px;
}



.footer-social a{
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;

    color: rgba(255,255,255,0.7);

    font-size: 14px;

    transition: 0.25s ease;
}

.footer-social a:hover{
    color: white;
    transform: translateX(5px);
}

.footer-social img{
    width: 17px;
    height: 17px;

    opacity: 0.75;
}

/* ========================= */
/* COPYRIGHT */
/* ========================= */

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.05);

    text-align: center;

    padding: 24px;

    color: rgba(255,255,255,0.34);

    font-size: 12px;
    letter-spacing: 0.6px;

    position: relative;
    z-index: 2;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width: 1100px){

    .footer-container{
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

}

@media(max-width: 700px){

    .footer-container{
        grid-template-columns: 1fr;
        text-align: center;

        padding: 65px 8% 45px;
    }

    .footer-logo{
        justify-content: center;
    }

    .footer-links,
    .footer-contact,
    .footer-social{
        align-items: center;
    }

    .footer-social a{
        justify-content: center;
    }

}


/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 900px){

    /* NAVBAR */

    nav{
        padding: 12px 20px;
        gap: 20px;
        flex-direction: column;
    }

    .logo img{
        height: 70px;
    }

    nav ul{
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0;
    }

    nav ul a{
        font-size: 13px;
    }

    /* HERO */

    header{
        padding: 0 20px;
    }

    .hero-content h1{
        font-size: 52px;
        line-height: 1;
    }

    .hero-content p{
        font-size: 18px;
        line-height: 1.5;
    }

    .hero-cta{
        gap: 14px;
    }

    .cta-primary{
        padding: 14px 24px;
        font-size: 14px;
    }

    /* SECCIONES */

    .about,
    .services,
    .process-section,
    .location-section,
    .service-detail,
    .footer{
        padding-left: 20px;
        padding-right: 20px;
    }

    /* ABOUT */

    .about{
        gap: 40px;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .about-text h2{
        font-size: 36px;
    }

    .about-cards{
        grid-template-columns: 1fr;
    }

    .card{
        padding: 28px;
    }

    /* SERVICES */

    .services-title h2{
        font-size: 34px;
    }

    .services-grid{
        grid-template-columns: 1fr;
    }

    .service-card{
        padding: 35px 25px;
    }

    /* PROCESS */

    .process-grid{
        grid-template-columns: 1fr;
    }

    /* LOCATION */

    .location-container{
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .location-map{
        height: 300px;
    }

    .location-info h2{
        font-size: 34px;
    }

    .contact-cards{
        grid-template-columns: 1fr;
    }

    .contact-cards .contact-card:nth-child(3){
        width: 100%;
    }

    /* FORM */

    .detail-text h2{
        font-size: 34px;
    }

    .contact-form{
        padding: 25px;
    }

    /* FOOTER */

    .footer-container{
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-social a,
    .footer-links a,
    .footer-contact a{
        justify-content: center;
    }

    /* WHATSAPP */

    .whatsapp-float{
        width: 58px;
        height: 58px;
        right: 18px;
        bottom: 18px;
    }

    .whatsapp-float img{
        width: 30px;
        height: 30px;
    }

}

/* EXTRA SMALL */

@media (max-width: 480px){

    .hero-content h1{
        font-size: 42px;
    }

    .hero-content p{
        font-size: 16px;
    }

    .services-title h2,
    .detail-text h2,
    .about-text h2,
    .location-info h2{
        font-size: 28px;
    }

    .service-card,
    .process-card,
    .card{
        padding: 24px;
    }

}


/* ========================= */
/* FIX SOBRE NOSOTROS + FOOTER */
/* ========================= */

@media (max-width: 900px){

    /* SOBRE NOSOTROS */
    .about{
        flex-direction: column;
        gap: 35px;
        text-align: center;
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .about-text h2{
        font-size: 34px;
        margin: 16px 0;
    }

    .about-text p{
        font-size: 15px;
        line-height: 1.7;
    }

    .about-cards{
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card{
        padding: 26px;
    }

    .card h3{
        font-size: 34px;
    }

    /* FOOTER / CIERRE */
    .footer-container{
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-links,
    .footer-contact,
    .footer-social{
        align-items: center;
    }

    .footer-bottom{
        padding: 22px 16px 26px;
        line-height: 1.6;
    }
}

@media (max-width: 480px){

    .about-text h2{
        font-size: 28px;
    }

    .card{
        padding: 22px;
    }

    .footer-bottom{
        font-size: 11px;
    }
}

/* ========================= */
/* FOOTER MOBILE FIX */
/* ========================= */

@media (max-width: 768px){

    .footer{
        padding: 70px 8% 30px;
    }

    .footer-container{
        display: flex;
        flex-direction: column;
        gap: 45px;
        text-align: center;
        align-items: center;
    }

    .footer-links,
    .footer-contact,
    .footer-social{
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .footer-links a,
    .footer-social a{
        justify-content: center;
    }

    .footer-contact{
        text-align: center;
    }

    .footer-item{
        align-items: center;
        text-align: center;
    }

    .footer-item p{
        text-align: center;
    }

    .footer-social{
        gap: 18px;
    }

    .footer-social a{
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
    }

    .footer-social img{
        width: 18px;
        height: 18px;
    }

    .footer-bottom{
        margin-top: 40px;
        text-align: center;
        font-size: 12px;
        line-height: 1.6;
        padding-bottom: 10px;
    }

    /* evita que el whatsapp tape contenido */
    .whatsapp-float{
        bottom: 18px;
        right: 18px;
    }

}

/* ===================================== */
/* IMPORTACIONES - COMEX RYD */
/* ===================================== */

.service-hero{
    min-height: 70vh;

    padding: 180px 10% 120px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=2000&q=80');

    background-size: cover;
    background-position: center;
}

.service-hero-content{
    max-width: 850px;
}

.service-hero-content h1{
    margin: 15px 0 25px;
}

.service-hero-content p{
    max-width: 700px;
    margin: auto;
    font-size: 18px;
}

.service-hero-content a{
    display: inline-block;

    margin-top: 35px;

    background: #ff7a00;
    color: white;

    text-decoration: none;

    padding: 15px 30px;

    border-radius: 12px;

    transition: .3s;
}

.service-hero-content a:hover{
    transform: translateY(-4px);
}

/* ===================================== */
/* INTRO */
/* ===================================== */

.service-info{
    padding: 90px 10%;
    background: #11151b;
    text-align: center;
}

.service-info-text{
    max-width: 900px;
    margin: auto;
}

.service-info-text h2{
    margin: 18px 0 25px;
}

/* ===================================== */
/* BLOQUE CENTRAL */
/* ===================================== */

.service-middle-t{
    padding: 90px 10%;

    display: grid;
    grid-template-columns: 1fr 1px 1fr;

    gap: 70px;

    background: #0f1115;
}

.divider{
    background: rgba(255,255,255,.08);
}

/* TITULOS */

.block-left .section-title,
.block-right .section-title{
    margin-bottom: 85px;
}

.block-left .section-title h2,
.block-right .section-title h2{
    margin-top: 12px;
}

/* TARJETAS */

.grid-2x2{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
}

.mini-card{
    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 20px;

    padding: 28px;

    transition: .3s;
}

.mini-card:hover{
    transform: translateY(-5px);
    border-color: #ff7a00;
}

.mini-card h3{
    color: #ff7a00;
    margin-bottom: 12px;
}

.mini-card p{
    color: rgba(255,255,255,.72);
}

/* ===================================== */
/* CTA */
/* ===================================== */

.cta-section{
    padding: 90px 10%;
    background: #11151b;
}

.cta-box{
    max-width: 900px;

    margin: auto;

    text-align: center;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 24px;

    padding: 60px;
}

.cta-box h2{
    margin: 18px 0;
}

.cta-box p{
    margin-bottom: 30px;
}

.cta-box a{
    display: inline-block;

    background: #ff7a00;
    color: white;

    text-decoration: none;

    padding: 14px 28px;

    border-radius: 12px;

    transition: .3s;
}

.cta-box a:hover{
    transform: translateY(-4px);
}

/* ===================================== */
/* CONTACTO */
/* ===================================== */

.contact-section{
    padding: 90px 10%;
    background: #0f1115;
}

.contact-container{
    max-width: 1200px;

    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.contact-text h2{
    margin: 15px 0 20px;
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:900px){

    .service-middle-t{
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .divider{
        display:none;
    }

    .grid-2x2{
        grid-template-columns: 1fr;
    }

    .contact-container{
        grid-template-columns: 1fr;
    }

    .block-left .section-title,
.block-right .section-title{
    margin-bottom: 45px;
    min-height: 90px;
}

    .cta-box{
        padding: 35px 25px;
    }
}

.service-hero{
    position: relative;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.service-hero-content{
    position: relative;
    z-index: 3;
}

/* ===================================== */
/* EXPORTACIONES - COMEX RYD */
/* ===================================== */

.service-hero{
    position: relative;

    min-height: 70vh;

    padding: 180px 10% 120px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=2000&q=80');

    background-size: cover;
    background-position: center;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.service-hero-content{
    position: relative;
    z-index: 3;
    max-width: 850px;
}

.service-hero-content h1{
    margin: 15px 0 25px;
}

.service-hero-content p{
    max-width: 700px;
    margin: auto;
    font-size: 18px;
}

.service-hero-content a{
    display: inline-block;
    margin-top: 35px;
    background: #ff7a00;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    transition: .3s;
}

.service-hero-content a:hover{
    transform: translateY(-4px);
}

/* INTRO */

.service-info{
    padding: 90px 10%;
    background: #11151b;
    text-align: center;
}

.service-info-text{
    max-width: 900px;
    margin: auto;
}

.service-info-text h2{
    margin: 18px 0 25px;
}

/* BLOQUE CENTRAL */

.service-middle-t{
    padding: 90px 10%;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 70px;
    background: #0f1115;
}

.divider{
    background: rgba(255,255,255,.08);
}

.block-left .section-title,
.block-right .section-title{
    margin-bottom: 85px;
}

.block-left .section-title h2,
.block-right .section-title h2{
    margin-top: 12px;
}

.grid-2x2{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
}

.mini-card{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 28px;
    transition: .3s;
}

.mini-card:hover{
    transform: translateY(-5px);
    border-color: #ff7a00;
}

.mini-card h3{
    color: #ff7a00;
    margin-bottom: 12px;
}

.mini-card p{
    color: rgba(255,255,255,.72);
}

/* CTA */

.cta-section{
    padding: 90px 10%;
    background: #11151b;
}

.cta-box{
    max-width: 900px;
    margin: auto;
    text-align: center;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 24px;
    padding: 60px;
}

.cta-box h2{
    margin: 18px 0;
}

.cta-box p{
    margin-bottom: 30px;
}

.cta-box a{
    display: inline-block;
    background: #ff7a00;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    transition: .3s;
}

.cta-box a:hover{
    transform: translateY(-4px);
}

/* CONTACTO */

.contact-section{
    padding: 90px 10%;
    background: #0f1115;
}

.contact-container{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.contact-text h2{
    margin: 15px 0 20px;
}

/* RESPONSIVE */

@media(max-width:900px){

    .service-middle-t{
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .divider{
        display:none;
    }

    .grid-2x2{
        grid-template-columns: 1fr;
    }

    .contact-container{
        grid-template-columns: 1fr;
    }

    .block-left .section-title,
.block-right .section-title{
    margin-bottom: 45px;
    min-height: 90px;
}

    .cta-box{
        padding: 35px 25px;
    }
}

/* ================================= */
/* PROVEEDORES */
/* ================================= */

.service-hero{
    position: relative;
    min-height: 75vh;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 140px 10% 100px;

    background-image:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=2000&q=80');

    background-size: cover;
    background-position: center;
}

.service-hero-content{
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.service-hero-content h1{
    margin: 18px 0;
}

.service-hero-content p{
    font-size: 20px;
    max-width: 760px;
    margin: auto;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
}

.service-hero-content a{
    display: inline-block;
    margin-top: 35px;

    background: #ff7a00;
    color: white;

    text-decoration: none;

    padding: 16px 34px;
    border-radius: 12px;

    transition: 0.3s;
}

.service-hero-content a:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,122,0,0.25);
}

/* INTRO */

.service-info{
    padding: 85px 10%;
    text-align: center;
    background: #11151b;
}

.service-info-text{
    max-width: 900px;
    margin: auto;
}

.service-info-text h2{
    margin: 18px 0;
}

/* BLOQUE CENTRAL */

.service-middle-t{
    padding: 85px 10%;

    background: #0f1115;

    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 50px;

    align-items: start;
}

.divider{
    background: linear-gradient(
        transparent,
        rgba(255,122,0,0.35),
        transparent
    );
}

/* TITULOS */

.block-left .section-title,
.block-right .section-title{
    margin-bottom: 45px;
    min-height: 90px;
}

.section-title{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.section-title h2{
    margin-top: 12px;
    margin-bottom: 0;
}

/* GRID */

.grid-2x2{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

/* TARJETAS */

.mini-card{
    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 18px;

    padding: 30px;

    transition: 0.3s;
}

.mini-card:hover{
    transform: translateY(-8px);
    border-color: #ff7a00;
}

.mini-card h3{
    color: #ff7a00;
    margin-bottom: 12px;
}

.mini-card p{
    font-size: 14px;
    color: rgba(255,255,255,0.70);
}

/* CTA */

.cta-section{
    padding: 90px 10%;
    background: #11151b;
}

.cta-box{
    max-width: 900px;
    margin: auto;

    text-align: center;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 24px;

    padding: 55px;
}

.cta-box h2{
    margin: 18px 0;
}

.cta-box p{
    margin-bottom: 30px;
}

.cta-box a{
    display: inline-block;

    background: #ff7a00;
    color: white;

    text-decoration: none;

    padding: 15px 30px;

    border-radius: 12px;

    transition: 0.3s;
}

.cta-box a:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,122,0,0.25);
}

/* CONTACTO */

.contact-section{
    padding: 90px 10%;
    background: #0f1115;
}

.contact-container{
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;

    align-items: center;
}

.contact-text h2{
    margin: 18px 0;
}

/* RESPONSIVE */

@media(max-width: 900px){

    .service-middle-t{
        grid-template-columns: 1fr;
    }

    .divider{
        display: none;
    }

    .grid-2x2{
        grid-template-columns: 1fr;
    }

    .contact-container{
        grid-template-columns: 1fr;
    }

    .cta-box{
        padding: 35px;
    }

    .service-hero{
        min-height: auto;
        padding: 180px 20px 100px;
    }

    .service-hero-content h1{
        font-size: 52px;
    }

    .service-hero-content p{
        font-size: 17px;
    }
}

/* ================================= */
/* ANALISIS DE PRODUCTOS */
/* ================================= */

.service-hero{
    position: relative;
    min-height: 75vh;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 140px 10% 100px;

    background-image:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=2000&q=80');

    background-size: cover;
    background-position: center;
}

.service-hero-content{
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.service-hero-content h1{
    margin: 18px 0;
}

.service-hero-content p{
    font-size: 20px;
    max-width: 760px;
    margin: auto;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
}

.service-hero-content a{
    display: inline-block;
    margin-top: 35px;

    background: #ff7a00;
    color: white;

    text-decoration: none;

    padding: 16px 34px;
    border-radius: 12px;

    transition: 0.3s;
}

.service-hero-content a:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,122,0,0.25);
}

/* INTRO */

.service-info{
    padding: 85px 10%;
    text-align: center;
    background: #11151b;
}

.service-info-text{
    max-width: 900px;
    margin: auto;
}

.service-info-text h2{
    margin: 18px 0;
}

/* BLOQUE CENTRAL */

.service-middle-t{
    padding: 85px 10%;

    background: #0f1115;

    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 50px;

    align-items: start;
}

.divider{
    background: linear-gradient(
        transparent,
        rgba(255,122,0,0.35),
        transparent
    );
}

/* TITULOS */

.block-left .section-title,
.block-right .section-title{
    margin-bottom: 45px;
    min-height: 90px;
}

.section-title{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.section-title h2{
    margin-top: 12px;
    margin-bottom: 0;
}

/* GRID */

.grid-2x2{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

/* TARJETAS */

.mini-card{
    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 18px;

    padding: 30px;

    transition: 0.3s;
}

.mini-card:hover{
    transform: translateY(-8px);
    border-color: #ff7a00;
}

.mini-card h3{
    color: #ff7a00;
    margin-bottom: 12px;
}

.mini-card p{
    font-size: 14px;
    color: rgba(255,255,255,0.70);
}

/* CTA */

.cta-section{
    padding: 90px 10%;
    background: #11151b;
}

.cta-box{
    max-width: 900px;
    margin: auto;

    text-align: center;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 24px;

    padding: 55px;
}

.cta-box h2{
    margin: 18px 0;
}

.cta-box p{
    margin-bottom: 30px;
}

.cta-box a{
    display: inline-block;

    background: #ff7a00;
    color: white;

    text-decoration: none;

    padding: 15px 30px;

    border-radius: 12px;

    transition: 0.3s;
}

.cta-box a:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,122,0,0.25);
}

/* CONTACTO */

.contact-section{
    padding: 90px 10%;
    background: #0f1115;
}

.contact-container{
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;

    align-items: center;
}

.contact-text h2{
    margin: 18px 0;
}

/* RESPONSIVE */

@media(max-width: 900px){

    .service-middle-t{
        grid-template-columns: 1fr;
    }

    .divider{
        display: none;
    }

    .grid-2x2{
        grid-template-columns: 1fr;
    }

    .contact-container{
        grid-template-columns: 1fr;
    }

    .cta-box{
        padding: 35px;
    }

    .service-hero{
        min-height: auto;
        padding: 180px 20px 100px;
    }

    .service-hero-content h1{
        font-size: 52px;
    }

    .service-hero-content p{
        font-size: 17px;
    }
}


/* ================================= */
/* GESTION ADUANERA */
/* ================================= */

.service-hero{
    position: relative;
    min-height: 75vh;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 140px 10% 100px;

    background-image:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url('https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&w=2000&q=80');

    background-size: cover;
    background-position: center;
}


/* ================================================= */
/* CONSULTORÍA COMEX */
/* ================================================= */

.service-hero{

    min-height: 82vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    position:relative;

    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),

    url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=2000&q=80');

    background-size:cover;
    background-position:center;

    overflow:hidden;
}

.service-hero-content{
    position:relative;
    z-index:3;
    max-width:900px;
    padding:0 30px;
}

.service-hero-content h1{
    margin:18px 0 22px;
}

.service-hero-content p{
    max-width:760px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
}

.service-hero-content a{

    display:inline-block;

    margin-top:35px;

    background:#ff7a00;

    color:white;

    text-decoration:none;

    padding:16px 34px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;
}

.service-hero-content a:hover{

    transform:translateY(-3px);

    box-shadow:
    0 10px 25px rgba(255,122,0,.25);
}

/* INTRO */

.service-info{

    padding:90px 10%;
    background:#11151b;
    text-align:center;
}

.service-info-text{
    max-width:900px;
    margin:auto;
}

.service-info-text h2{
    margin:18px 0 25px;
}

.service-info-text p{
    max-width:750px;
    margin:auto;
}

/* BLOQUE CENTRAL */

.service-middle-t{

    padding:90px 10%;

    background:#0f1115;

    display:grid;

    grid-template-columns:1fr 1px 1fr;

    gap:70px;

    align-items:start;
}

.divider{

    background:
    linear-gradient(
        transparent,
        rgba(255,122,0,.25),
        transparent
    );
}

/* TITULOS */

.section-title{

    margin-bottom:40px;
}

.section-title h2{

    margin-top:14px;

    margin-bottom:8px;
}

/* GRILLA */

.grid-2x2{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;
}

/* TARJETAS */

.mini-card{

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:28px;

    transition:.3s;
}

.mini-card:hover{

    transform:translateY(-6px);

    border-color:#ff7a00;
}

.mini-card h3{

    color:#ff7a00;

    margin-bottom:10px;

    font-size:19px;
}

.mini-card p{

    font-size:14px;
    color:#c9c9c9;
}

/* CTA */

.cta-section{

    padding:90px 10%;

    background:#11151b;

    text-align:center;
}

.cta-box{

    max-width:850px;
    margin:auto;
}

.cta-box h2{

    margin:18px 0 20px;
}

.cta-box p{

    max-width:650px;
    margin:auto;
}

.cta-box a{

    display:inline-block;

    margin-top:35px;

    background:#ff7a00;

    color:white;

    text-decoration:none;

    padding:16px 34px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;
}

.cta-box a:hover{

    transform:translateY(-3px);

    box-shadow:
    0 10px 25px rgba(255,122,0,.25);
}

/* CONTACTO */

.contact-section{

    padding:90px 10%;
    background:#0f1115;
}

.contact-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

.contact-text h2{

    margin:18px 0 20px;
}

.contact-text p{

    max-width:520px;
}

.contact-form{

    max-width:100%;
}

/* RESPONSIVE */

@media(max-width:900px){

    .service-middle-t{

        grid-template-columns:1fr;

        gap:50px;
    }

    .divider{
        display:none;
    }

    .contact-container{

        grid-template-columns:1fr;
    }

    .grid-2x2{

        grid-template-columns:1fr;
    }

    .service-hero-content h1{
        font-size:48px;
    }

    .service-hero-content p{
        font-size:17px;
    }
}