/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f5f5;
    color:#222;
}
.hero-btn,
.btn-contacto,
.cta-btn,
.contact-form button{
    transition:0.35s ease;
}

.hero-btn:hover,
.btn-contacto:hover,
.cta-btn:hover,
.contact-form button:hover{
    transform:translateY(-3px);
}
/* CONTAINER */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */
header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    padding:18px 0;
    background:#fff;
    border-bottom:1px solid #eee;
}

header.sticky{
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */
.logo img{
    width:170px;
}

/* NAVBAR */
.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    font-size:16px;
    transition:0.3s;
}

.nav-links a:hover{
    color:#d4a017;
}
/* ACTIVE MENU */
.nav-link.active{
    color:#d4a017;
    position:relative;
}

.nav-link.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:2px;
    background:#d4a017;
}
/* BUTTON */
.btn-contacto{
    background:#d4a017;
    color:#000;
    text-decoration:none;
    padding:12px 24px;
    border-radius:5px;
    font-weight:bold;
    transition:0.3s;
}

.btn-contacto:hover{
    background:#fff;
}

/* HERO */
.hero{
    height:100vh;
    background:
    linear-gradient(
    rgba(70, 68, 68, 0.65),
    rgba(71, 71, 71, 0.65)),
    url('../assets/img/hero.jpg') center/cover no-repeat;
    position: relative;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.70);
}

.hero-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1200px;
    margin:auto;
}

.hero-content h1{
    font-size:68px;
    line-height:1.15;
    font-weight:700;
    margin-bottom:25px;
    color: #fff;
}

.hero-content p{
    font-size:20px;
    max-width:700px;
    margin-bottom:30px;
    color:#ddd;
}

.hero-btn{
    display:inline-block;
    background:#d4a017;
    color:#000;
    padding:15px 30px;
    text-decoration:none;
    font-weight:bold;
    border-radius:5px;
    transition:0.3s;
}

.hero-btn:hover{
    background:#fff;
}

/* MOBILE MENU */
.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* RESPONSIVO */
@media(max-width:991px){

    .nav-links{
        position:absolute;
        top:90px;
        right:-100%;
        background:#fff;
        width:350px;
        flex-direction:column;
        padding:30px;
        transition:0.3s;
    }

    .nav-links.active{
        right:20px;
    }

    .menu-toggle{
        display:block;
    }

    .btn-contacto{
        display:none;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:18px;
    }
}

/* ABOUT ##############################################################################*/
.about{
    padding:100px 0;
    background:#fff;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:10px;
}

.section-tag{
    color:#d4a017;
    font-weight:bold;
    letter-spacing:2px;
    display:block;
    margin-bottom:15px;
}

.about-content h2{
    font-size:42px;
    line-height:1.3;
    margin-bottom:25px;
}

.about-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
    font-size:17px;
}

.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:30px;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:12px;
    background:#f8f8f8;
    border:1px solid #eee;
    padding:18px;
    border-left:3px solid #d4a017;
    border-radius:6px;
}

.feature-box i{
    color:#d4a017;
    font-size:18px;
}

.feature-box span{
     color:#222;
    font-size:15px;
}

/* RESPONSIVO ABOUT */
@media(max-width:991px){

    .about-container{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

}

/* SERVICES #########################################################################################*/
.services{
    padding:100px 0;
    background:#f5f5f5;
}

.section-title{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:70px;
}

.section-title span{
    color:#d4a017;
    font-weight:bold;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    margin:20px 0;
    line-height:1.3;
    color:#222;
}

.section-title p{
    color:#666;
    line-height:1.8;
}

/* GRID */
.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */
.service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:12px;
    transition:0.3s;
    border:1px solid #eee;
    transform:translateY(-10px);
    border-color:#d4a017;

}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.service-icon{
    width:70px;
    height:70px;
    background:#fff7df;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.service-icon i{
    font-size:28px;
    color:#d4a017;
}

.service-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

/* SERVICE LINK */
.service-link{

    margin-top:25px;

    display:flex;

    align-items:center;

    gap:10px;

    color:#d4a017;

    font-weight:600;

    transition:0.3s ease;
}

.service-link i{

    transition:0.3s ease;
}

.service-card:hover .service-link i{

    transform:translateX(6px);
}
/* RESPONSIVO */
@media(max-width:991px){

    .services-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:32px;
    }

}
/* SERVICES */
.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    cursor:pointer;
}

/* MODAL */
.service-modal{

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:rgba(0,0,0,0.78);

    backdrop-filter:blur(6px);

    display:none;

    align-items:center;
    justify-content:center;

    z-index:99999;

    padding:20px;
}

.modal-content{

    background:#fff;

    width:100%;
    max-width:760px;

    border-radius:18px;

    padding:45px;

    position:relative;

    animation:modalShow 0.4s ease;
}

.close-modal{

    position:absolute;

    top:20px;
    right:25px;

    font-size:34px;

    cursor:pointer;

    color:#999;

    transition:0.3s;
}

.close-modal:hover{

    color:#d4a017;

    transform:rotate(90deg);
}

/* HEADER */
.modal-header{

    display:flex;

    align-items:center;

    gap:25px;

    margin-bottom:30px;
}

.modal-service-icon{

    width:95px;
    height:95px;

    min-width:95px;

    border-radius:50%;

    background:#fff7df;

    display:flex;
    align-items:center;
    justify-content:center;
}

.modal-service-icon i{

    font-size:42px;

    color:#d4a017;
}

.modal-tag{

    display:inline-block;

    color:#d4a017;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:10px;
}

.modal-header h2{

    font-size:36px;

    color:#222;
}

/* DESCRIPTION */
.modal-description{

    margin-bottom:35px;
}

.modal-description p{

    color:#666;

    line-height:1.9;

    font-size:17px;
}

/* LIST */
.modal-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;
}

.modal-item{

    display:flex;

    align-items:center;

    gap:14px;

    background:#fafafa;

    padding:18px;

    border-radius:10px;

    border:1px solid #eee;

    transition:0.3s;
}

.modal-item:hover{

    border-color:#d4a017;

    transform:translateY(-3px);
}

.modal-item i{

    color:#d4a017;

    font-size:18px;
}

.modal-item span{

    color:#444;

    line-height:1.5;
}

/* RESPONSIVO */
@media(max-width:768px){

    .modal-content{

        padding:35px 25px;
    }

    .modal-header{

        flex-direction:column;

        text-align:center;
    }

    .modal-list{

        grid-template-columns:1fr;
    }

    .modal-header h2{

        font-size:28px;
    }

}
/* RESPONSIVO */
@media(max-width:991px){

    .services-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .services-grid{
        grid-template-columns:1fr;
    }

}

/* WHY US ######################################################################################### */
.why-us{
    padding:100px 0;
    background:#fff;
}

.why-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.why-image img{
    width:100%;
    border-radius:12px;
}

.why-content h2{
    font-size:42px;
    line-height:1.3;
    margin:20px 0;
    color:#222;
}

.why-content p{
    color:#666;
    line-height:1.8;
}

.why-items{
    margin-top:40px;
}

.why-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.why-icon{
    min-width:65px;
    height:65px;
    background:#fff7df;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.why-icon i{
    color:#d4a017;
    font-size:24px;
}

.why-item h4{
    margin-bottom:8px;
    color:#222;
    font-size:20px;
}

.why-item p{
    color:#666;
}

/* RESPONSIVO */
@media(max-width:991px){

    .why-container{
        grid-template-columns:1fr;
    }

    .why-content h2{
        font-size:32px;
    }

}

/* CTA #########################################################################################*/
/* CTA */
.cta{

    position:relative;

    padding:50px 0;

    background:
    linear-gradient(
    rgba(4,4,4,0.93),
    rgba(4,4,4,0.93)),
    url('../assets/img/cta-bg.jpg')
    center/cover no-repeat;

    overflow:hidden;
}

.cta-overlay{

    position:absolute;

    width:100%;
    height:100%;

    top:0;
    left:0;

    background:
    linear-gradient(
    135deg,
    rgba(212,160,23,0.05),
    rgba(255,255,255,0.01)
    );
}

.cta-container{

    position:relative;
    z-index:2;

    max-width:1000px;

    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    text-align:center;
}

.cta p{

    color:#fff;

    font-size:28px;

    line-height:1.5;

    font-weight:700;

    margin-bottom:50px;
}

.cta-btn{

    display:inline-block;

    background:#d4a017;

    color:#000;

    text-decoration:none;

    padding:18px 42px;

    border-radius:8px;

    font-weight:700;

    font-size:16px;

    transition:0.35s ease;
}

.cta-btn:hover{

    transform:translateY(-4px);

    background:#fff;
}

/* RESPONSIVO */
@media(max-width:991px){

    .cta p{
        font-size:38px;
    }

}

@media(max-width:768px){

    .cta{

        padding:100px 0;
    }

    .cta p{

        font-size:28px;

        line-height:1.6;
    }

}

/* CONTACT #########################################################################################*/
.contact{
    padding:100px 0;
    background:#f8f8f8;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    margin-top:60px;
}

/* INFO */
.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-box{
    display:flex;
    gap:20px;
    background:#fff;
    padding:25px;
    border-radius:10px;
    border:1px solid #eee;
}

.contact-icon{
    width:65px;
    height:65px;
    background:#fff7df;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-icon i{
    color:#d4a017;
    font-size:24px;
}

.contact-box h4{
    margin-bottom:8px;
    font-size:20px;
    color:#222;
}

.contact-box p{
    color:#666;
}

/* WHATSAPP */
.whatsapp-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:18px;
    border-radius:8px;
    font-weight:bold;
    transition:0.3s;
}

.whatsapp-btn:hover{
    opacity:0.9;
}

/* FORM */
.contact-form{
    background:#fff;
    padding:40px;
    border-radius:12px;
    border:1px solid #eee;
}

.form-group{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:6px;
    outline:none;
    font-size:15px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#d4a017;
}

.contact-form button{
    width:100%;
    padding:16px;
    background:#d4a017;
    border:none;
    border-radius:6px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#111;
    color:#fff;
}

/* RESPONSIVO */
@media(max-width:991px){

    .contact-container{
        grid-template-columns:1fr;
    }

    .cta h2{
        font-size:34px;
    }

}

/* FOOTER #########################################################################################*/
.footer{
    background:#111;
    color:#fff;
    padding-top:80px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    padding-bottom:60px;
}

.footer-logo{
    width:180px;
    margin-bottom:20px;
}

.footer-col p{
    color:#bbb;
    line-height:1.8;
}

.footer-col h3{
    margin-bottom:25px;
    color:#fff;
    font-size:22px;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:15px;
}

.footer-col ul li a{
    color:#bbb;
    text-decoration:none;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#d4a017;
}

.footer-contact li{
    color:#bbb;
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-contact i{
    color:#d4a017;
}

/* COPYRIGHT */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    padding:25px 0;
}

.footer-bottom p{
    color:#999;
    font-size:14px;
}

/* WHATSAPP FLOAT */
.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
    z-index:999;
    transition:0.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* BACK TO TOP #########################################################################################*/
#backToTop{
    position:fixed;
    bottom:100px;
    right:30px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#d4a017;
    color:#000;
    cursor:pointer;
    display:none;
    z-index:999;
    transition:0.3s;
}

#backToTop:hover{
    background:#111;
    color:#fff;
}

/* RESPONSIVO */
@media(max-width:991px){

    .footer-container{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
    }

}
.footer-bottom a{

    color:#d4a017;

    text-decoration:none;

    transition:0.3s ease;
}

.footer-bottom a:hover{

    color:#fff;
}

/* LOADER #########################################################################################*/
#loader{
    position:fixed;
    width:100%;
    height:100vh;
    background:#fff;
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.8s ease;
}

.loader-content{
    text-align:center;
}

.loader-content img{
    width:220px;
    margin-bottom:30px;
}

.loader-line{
    width:220px;
    height:4px;
    background:#eee;
    border-radius:20px;
    overflow:hidden;
    position:relative;
}

.loader-line::before{
    content:'';
    position:absolute;
    width:40%;
    height:100%;
    background:#d4a017;
    animation:loading 1.2s infinite;
}

@keyframes loading{

    0%{
        left:-40%;
    }

    100%{
        left:100%;
    }

}
/* INSTITUTIONAL */
.institutional{
    position:relative;
    padding:120px 0;
    background:url('../assets/img/institutional.jpg')
    center/cover no-repeat;

    overflow:hidden;
}

.institutional-overlay{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;

    background:rgba(0,0,0,0.75);
}

.institutional-container{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.institutional-card{
    text-align:center;
    color:#fff;

    padding:40px 25px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:14px;

    backdrop-filter:blur(5px);

    transition:0.4s ease;
}

.institutional-card:hover{

    transform:translateY(-10px);

    border-color:#d4a017;

    background:rgba(255,255,255,0.08);
}

.institutional-icon{
    width:80px;
    height:80px;

    margin:auto;
    margin-bottom:25px;

    border-radius:50%;

    background:rgba(212,160,23,0.15);

    display:flex;
    align-items:center;
    justify-content:center;
}

.institutional-icon i{
    font-size:32px;
    color:#d4a017;
}

.institutional-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.institutional-card p{
    line-height:1.9;
    color:#ddd;
    font-size:16px;
}

/* RESPONSIVO */
@media(max-width:991px){

    .institutional-container{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .institutional-container{
        grid-template-columns:1fr;
    }

}

/* STATS #########################################################################################*/
.stats{

    position:relative;

    padding:120px 0;

    background:
    linear-gradient(
    rgba(0,0,0,0.82),
    rgba(0,0,0,0.82)),
    url('../assets/img/Dark-Warehousing.png')
    center/cover no-repeat;

    overflow:hidden;
}

.stats-overlay{

    position:absolute;

    width:100%;
    height:100%;

    top:0;
    left:0;

    background:
    linear-gradient(
    135deg,
    rgba(212,160,23,0.08),
    rgba(255,255,255,0.02)
    );
}

.stats-container{

    position:relative;
    z-index:2;

    display:flex;

    /*grid-template-columns:repeat(4,1fr);

    gap:30px;*/
}

.stat-box{

    text-align:center;

    color:#fff;

}

.stat-box i{

    font-size:42px;

    color:#d4a017;

    margin-bottom:25px;
}

.stat-box h2{

    font-size:64px;

    margin-bottom:15px;

    font-weight:700;
}

.stat-box p{

    color:#ddd;

    font-size:18px;

    letter-spacing:1px;
}

/* RESPONSIVO */
@media(max-width:991px){

    .stats-container{

        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .stats-container{

        grid-template-columns:1fr;
    }

}