/*====================================================
    TRANSPORTES GINO
====================================================*/

:root{

    --verde:#006B3F;
    --verde-claro:#0C8F57;
    --verde-oscuro:#014D2C;

    --rojo:#D62828;
    --rojo-hover:#B91C1C;

    --blanco:#FFFFFF;
    --gris:#F5F5F5;
    --gris2:#ECECEC;

    --texto:#303030;

}

/*====================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{
    background:var(--verde-oscuro); ;
    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    color:var(--texto);
    overflow-x:hidden;
    background:#fff;

}

img{

    max-width:100%;
    display:block;

}

section{

    padding:110px 0;

}

a{

    text-decoration:none;

}

/*====================================================
TOPBAR
====================================================*/

.topbar{

    color:black;

    padding:8px 0;

    font-size:14px;

}

.topbar a{

    color:white;

    transition:.3s;

}

.topbar a:hover{

    color:#d4ffd8;

}

/*====================================================
NAVBAR
====================================================*/
.navbar{
 width:100%;
    color: black;
    padding:8px 0;
    transition:.35s;
    z-index:999;

}

.navbar-brand{

    margin:0;
    padding:0;

}

.navbar-brand img{

    height:55px;
    width:auto;
    display:block;

}
@media (max-width:991px){

    .navbar-collapse{
        background:#fff;
        padding:20px;
        width:100%;
    }

    .navbar-nav{
        width:100%;
    }

    .nav-item{
        width:100%;
    }

    .nav-link{
        display:block;
        width:100%;
    }

}

.navbar-toggler{

    border:none;
    box-shadow:none;
    margin-left:auto;

}

.navbar-toggler:focus{

    box-shadow:none;

}

.nav-link{

    color:black;
    font-weight:600;
    margin-left:18px;
    transition:.3s;

}

.nav-link:hover{

    color:#9AE6B4;

}

.navbar.scrolled{

    background:rgba(255,255,255,.98);
    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.navbar.scrolled .nav-link{

    color:var(--texto);

}

.navbar.scrolled .nav-link:hover{

    color:var(--verde);

}
/*====================================================
BOTONES
====================================================*/

.btn-presupuesto{

    background:var(--rojo);

    color:white;

    padding:13px 28px;

    border-radius:40px;

    font-weight:700;

    transition:.3s;

}

.btn-presupuesto:hover{

    background:var(--rojo-hover);

    color:white;

    transform:translateY(-2px);

}

.btn-primary-custom{

    background:var(--rojo);

    color:white;

    padding:18px 42px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-primary-custom:hover{

    background:var(--rojo-hover);

    color:white;

    transform:translateY(-3px);

}

.btn-whatsapp-custom{

    background:#25D366;

    color:white;

    padding:18px 42px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-whatsapp-custom:hover{

    background:#1FAF57;

    color:white;

    transform:translateY(-3px);

}

/*====================================================
HERO
====================================================*/

.hero{

    position:relative;

    min-height:100vh;

    background:url("../img/hero.webp") center center;

    background-size:cover;

    display:flex;

    align-items:center;

    overflow:hidden;

    background-attachment:fixed;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        90deg,

        rgba(0,0,0,.78),

        rgba(0,0,0,.40)

    );

}

.hero .container{

    position:relative;

    z-index:2;

}
.hero-subtitle{

    color:#A7F3D0;

    letter-spacing:4px;

    font-weight:700;

    text-transform:uppercase;

}

.hero h1{

    font-size:68px;

    color:white;

    font-weight:800;

    line-height:1.1;

    margin:18px 0;

}

.hero h1 span{

    color:var(--rojo);

}

.hero p{

    color:#ECECEC;

    font-size:20px;

    line-height:1.8;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;

}

/*====================================================
HERO CARD
====================================================*/

.hero-card{

    position:absolute;

    right:80px;

    bottom:70px;

    background:white;

    border-top:6px solid var(--verde);

    border-radius:20px;

    padding:35px;

    display:flex;

    gap:35px;

    box-shadow:0 25px 60px rgba(0,0,0,.20);

    z-index:5;

}

.hero-card h2{

    color:var(--verde);

    font-size:42px;

    font-weight:800;

}

.hero-card small{

    color:#666;

}
/*====================================================
    TITULOS
====================================================*/

.section-mini{

    color:var(--rojo);

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:10px;

}

section h2{

    font-size:48px;

    font-weight:800;

    color:var(--verde);

    margin-bottom:25px;

}

.section-text{

    max-width:700px;

    margin:auto;

    color:#666;

    font-size:18px;

    line-height:1.8;

}

/*====================================================
    EMPRESA
====================================================*/

.empresa{

    background:white;

}

.empresa-img{

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.empresa-img img{

    transition:.6s;

}

.empresa-img:hover img{

    transform:scale(1.06);

}

.empresa p{

    font-size:18px;

    line-height:1.9;

    color:#555;

}

.empresa-items{

    margin-top:35px;

}

.empresa-items div{

    margin-bottom:18px;

    font-size:18px;

    display:flex;

    align-items:center;

}

.empresa-items i{

    color:var(--verde);

    font-size:22px;

    margin-right:12px;

}

/*====================================================
    SERVICIOS
====================================================*/

.servicios{

    background:var(--gris);

}

.service-card{

    background:white;

    border-radius:20px;

    padding:45px 35px;

    height:100%;

    text-align:center;

    transition:.35s;

    border-bottom:5px solid transparent;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

}

.service-card:hover{

    transform:translateY(-10px);

    border-bottom:5px solid var(--rojo);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.service-card i{

    font-size:60px;

    color:var(--verde);

    margin-bottom:20px;

}

.service-card h4{

    color:var(--verde-oscuro);

    font-weight:700;

    margin-bottom:18px;

}

.service-card p{

    color:#666;

    line-height:1.8;

}

/*====================================================
    VENTAJAS
====================================================*/

.ventajas{

    background:linear-gradient(

        135deg,

        var(--verde),

        var(--verde-oscuro)

    );

}

.ventaja{

    text-align:center;

    color:white;

    padding:20px;

}

.ventaja i{

    font-size:60px;

    margin-bottom:25px;

}

.ventaja h3{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.ventaja p{

    color:#e7e7e7;

    line-height:1.7;

}

/*====================================================
    ESTADISTICAS
====================================================*/

.estadisticas{

    background:white;

}

.numero{

    font-size:58px;

    color:var(--rojo);

    font-weight:800;

}

.numero-texto{

    font-size:18px;

    color:#666;

}

/*====================================================
    FLOTA
====================================================*/

.flota{

    background:#fff;

}

.camion{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.camion img{

    width:100%;

    height:360px;

    object-fit:cover;

    transition:.7s;

}

.camion:hover img{

    transform:scale(1.10);

}

.camion-info{

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    padding:30px;

    background:linear-gradient(

        transparent,

        rgba(0,0,0,.88)

    );

    color:white;

}

.camion-info h4{

    font-weight:700;

    margin-bottom:8px;

}

.camion-info p{

    margin:0;

    color:#ddd;

}

/*====================================================
    COBERTURA
====================================================*/

.cobertura{

    background:var(--gris);

}

.lista{

    list-style:none;

    padding:0;

    margin-top:25px;

}

.lista li{

    padding:14px 0;

    font-size:18px;

    border-bottom:1px solid #e6e6e6;

}

.lista li:last-child{

    border:none;

}

.lista li::before{

    content:"✔";

    color:var(--verde);

    font-weight:bold;

    margin-right:12px;

}

.cobertura img{

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}
/*====================================================
CTA
====================================================*/

.cta{

    background:linear-gradient(
        135deg,
        var(--verde),
        var(--verde-oscuro)
    );

    color:white;

    text-align:center;

}

.cta h2{

    color:white;

    font-size:52px;

    font-weight:800;

}

.cta p{

    max-width:750px;

    margin:25px auto 40px;

    color:#e9e9e9;

    font-size:19px;

    line-height:1.8;

}

.btn-cta{

    display:inline-block;

    background:var(--rojo);

    color:white;

    padding:18px 42px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.btn-cta:hover{

    background:white;

    color:var(--verde);

    transform:translateY(-3px);

}

/*====================================================
CONTACTO
====================================================*/

.contacto{

    background:white;

}

.contact-card{

    background:white;

    border-radius:22px;

    padding:45px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.form-control,
.form-select{

    border-radius:14px;

    padding:15px;

    border:1px solid #ddd;

    box-shadow:none;

}

.form-control:focus,
.form-select:focus{

    border-color:var(--verde);

    box-shadow:0 0 0 .2rem rgba(0,107,63,.15);

}

textarea{

    resize:none;

}

.btn-enviar{

    background:var(--verde);

    color:white;

    border:none;

    padding:16px 38px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.btn-enviar:hover{

    background:var(--verde-oscuro);

    color:white;

}

.info-contacto{

    background:linear-gradient(
        180deg,
        var(--verde),
        var(--verde-oscuro)
    );

    color:white;

    padding:45px;

    border-radius:22px;

    height:100%;

}

.info-contacto div{

    margin:28px 0;

    font-size:18px;

}

.info-contacto i{

    color:white;

    font-size:22px;

    margin-right:14px;

}

/*====================================================
FOOTER
====================================================*/

footer{

    background:#05331E;

    color:white;

    padding:80px 0 35px;

}

footer h4{

    margin-bottom:25px;

    font-weight:700;

}

footer ul{

    list-style:none;

    padding:0;

}

footer li{

    padding:8px 0;

}

footer a{

    color:#dcdcdc;

    transition:.3s;

}

footer a:hover{

    color:white;

    padding-left:5px;

}

footer hr{

    border-color:rgba(255,255,255,.12);

    margin:40px 0 25px;

}

footer p{

    margin:0;

}

/*====================================================
BOTON VOLVER ARRIBA
====================================================*/

#top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--rojo);

    color:white;

    display:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

    z-index:999;

}

#top:hover{

    background:var(--verde);

    transform:translateY(-4px);

}

/*====================================================
LOADER
====================================================*/

#loader{

    position:fixed;

    inset:0;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

/*====================================================
ANIMACIONES
====================================================*/

.service-card,
.camion,
.contact-card,
.hero-card{

    transition:all .35s ease;

}

.service-card:hover,
.camion:hover,
.contact-card:hover{

    transform:translateY(-8px);

}

.camion:hover{

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:991px){

    section{

        padding:80px 0;

    }

    .navbar{

        background:var(--verde);
        width: 100%;

    }

    .hero{

        background-attachment:scroll;

        text-align:center;

    }

    .hero h1{

        font-size:46px;

    }

    .hero p{

        font-size:18px;

        margin:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-card{

        display:none;

    }

    section h2{

        font-size:36px;

    }

    .numero{

        font-size:42px;

    }

}

@media(max-width:768px){

    .navbar-brand img{

        height:55px;

    }

    .hero h1{

        font-size:38px;

    }

    .hero p{

        font-size:17px;

    }

    .btn-primary-custom,
    .btn-whatsapp-custom,
    .btn-cta{

        width:100%;

        text-align:center;

    }

    .contact-card,
    .info-contacto{

        padding:30px;

    }

    .camion img{

        height:260px;

    }

}

@media(max-width:576px){

    .hero{

        min-height:90vh;

    }

    .hero h1{

        font-size:32px;

    }

    .hero-subtitle{

        letter-spacing:2px;

        font-size:13px;

    }

    section h2{

        font-size:30px;

    }

}

.carousel-control-prev,
.carousel-control-next{

    width:55px;
    height:55px;

    background:rgba(0,0,0,.45);

    border-radius:50%;

    top:50%;

    transform:translateY(-50%);

}

.carousel-control-prev{

    left:-25px;

}

.carousel-control-next{

    right:-25px;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    width:25px;
    height:25px;

}