/*==========================================================
    GAS VITAL ENERGY
==========================================================*/

/*======================
      GOOGLE FONT
=======================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*======================
      VARIABLES
=======================*/

:root{

    --primary:#3dad7a;
    --primary-dark:#16302c;
    --secondary:#04b0df;
    --secondary-dark:#00319b;

    --white:#ffffff;
    --light:#f7f8fa;
    --gray:#777;
    --dark:#202020;

    --shadow:0 10px 35px rgba(0,0,0,.12);

    --radius:15px;

    --transition:.35s ease;

    --container:1200px;

}

/*======================
      RESET
=======================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

ul{

    list-style:none;

}

a{

    text-decoration:none;

}

section{

    padding:90px 0;

}

.container{

    width:90%;
    max-width:var(--container);
    margin:auto;

}

/*======================
      TITULOS
=======================*/

.title{

    text-align:center;
    margin-bottom:60px;

}

.title h2{

    font-size:42px;
    color:var(--secondary);
    margin-bottom:15px;
    font-weight:700;

}

.title p{

    color:#666;
    font-size:17px;
    max-width:700px;
    margin:auto;

}

.subtitle{

    color:var(--primary);
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
    font-size:14px;

}

/*======================
      BOTONES
=======================*/

.btn-primary{

    display:inline-block;

    background:var(--primary);

    color:#fff;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    box-shadow:0 10px 25px rgba(11,143,77,.35);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}

.btn-secondary{

    display:inline-block;

    padding:16px 35px;

    border-radius:50px;

    color:#fff;

    border:2px solid #fff;

    transition:var(--transition);

}

.btn-secondary:hover{

    background:#fff;

    color:var(--secondary);

}

/*======================
      HEADER
=======================*/

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:9999;

    transition:.4s;

    padding:18px 0;

}

header.active{

    background:#fff;

    box-shadow:var(--shadow);

    padding:12px 0;

}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    width:70px;

}

nav ul{

    display:flex;

    gap:35px;

}

nav ul li a{

    color:#fff;

    font-weight:500;

    transition:.3s;

}

header.active nav ul li a{

    color:#222;

}

nav ul li a:hover{

    color:var(--primary);

}

.btn-header{

    background:var(--primary);

    color:#fff;

    padding:13px 28px;

    border-radius:40px;

    transition:.3s;

}

.btn-header:hover{

    background:var(--primary-dark);

}

.menu-btn{

    display:none;

    font-size:28px;

    cursor:pointer;

}

/*======================
        HERO
=======================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-bg{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

    left:0;

    top:0;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to right,
    rgba(8,18,35,.88),
    rgba(15,65,90,.55));

}

.hero-content{

    position:relative;

    z-index:5;

}

.hero-text{

    width:650px;

    max-width:100%;

}

.tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    color:#fff;

    padding:10px 20px;

    border-radius:30px;

    margin-bottom:25px;

    backdrop-filter:blur(8px);

}

.hero h1{

    color:#fff;

    font-size:65px;

    line-height:1.15;

    margin-bottom:25px;

    font-weight:700;

}

.hero h1 span{

    color:#4CE38A;

}

.hero p{

    color:#eee;

    font-size:19px;

    line-height:1.8;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/*======================
    EFECTO HERO
=======================*/

.hero::after{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    right:-180px;

    top:-180px;

}

.hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-180px;

    left:-180px;

}

/*======================
    ANIMACIONES
=======================*/

.service-card,
.industry-card,
.stat,
.about-image,
.about-content{

    transition:.35s;

}

.service-card:hover,
.industry-card:hover{

    transform:translateY(-10px);

}

/*======================
    UTILIDADES
=======================*/

.shadow{

    box-shadow:var(--shadow);

}

.round{

    border-radius:var(--radius);

}

.text-center{

    text-align:center;

}

.mt-40{

    margin-top:40px;

}

.mb-40{

    margin-bottom:40px;

}

.pt-0{

    padding-top:0;

}

.pb-0{

    padding-bottom:0;

}

/*==================================================
                    NOSOTROS
==================================================*/

.about{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img,
.about-video{

    width:100%;
    border-radius:20px;
    box-shadow:var(--shadow);
    display:block;

}

.about-content h2{
    font-size:42px;
    color:var(--secondary);
    margin:15px 0 25px;
    line-height:1.3;
}

.about-content p{
    color:#666;
    font-size:17px;
    line-height:1.9;
}

.stats{
    display:flex;
    justify-content:space-between;
    margin-top:45px;
    gap:20px;
}

.stat{
    flex:1;
    text-align:center;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:var(--shadow);
}

.stat h3{
    font-size:42px;
    color:var(--primary);
}

.stat p{
    margin-top:10px;
    color:#666;
    text-align: justify;
}


/*==================================================
                SERVICIOS
==================================================*/

.services{
    background:#f7f9fc;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.service-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s;

}

.service-card img{

    height:260px;
    object-fit:cover;

}

.service-card h3{

    font-size:28px;
    color:var(--secondary);
    margin:30px 30px 15px;

}

.service-card p{

    margin:0 30px;
    color:#666;
    line-height:1.8;

}

.service-card ul{

    padding:30px;

}

.service-card ul li{

    padding:10px 0;
    color:#444;
    border-bottom:1px solid #eee;

}

.service-card:hover{

    transform:translateY(-12px);

}


/*==================================================
                INDUSTRIAS
==================================================*/

.industries{

    background:#fff;

}

.industry-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.industry-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s;

}

.industry-card img{

    height:220px;
    object-fit:cover;

}

.industry-card h4{

    padding:25px;
    text-align:center;
    color:var(--secondary);
    font-size:20px;

}

.industry-card:hover{

    transform:translateY(-10px);

}


/*==================================================
                COBERTURA
==================================================*/

.coverage{

    background:#f7f9fc;

}

.coverage-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

.coverage img{

    border-radius:20px;
    box-shadow:var(--shadow);

}

.coverage h2{

    font-size:42px;
    color:var(--secondary);
    margin-bottom:20px;

}

.coverage p{

    color:#666;
    line-height:1.9;
    margin-bottom:20px;

}

.coverage h4{

    color:var(--primary);
    margin-top:25px;
    margin-bottom:10px;
    font-size:22px;

}


/*==================================================
                VENTAJAS
==================================================*/

.advantages{

    background:#fff;

}

.advantages-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.advantages-grid div{

    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:18px;
    box-shadow:var(--shadow);
    transition:.35s;

}

.advantages-grid div:hover{

    transform:translateY(-10px);

}

.advantages-grid i{

    font-size:55px;
    color:var(--primary);
    margin-bottom:20px;

}

.advantages-grid h4{

    color:var(--secondary);
    font-size:22px;

}


/*==================================================
                CONTACTO
==================================================*/

.contact{

    background:linear-gradient(135deg,var(--secondary),var(--primary));
    text-align:center;
    color:#fff;

}

.contact h2{

    font-size:48px;
    margin-bottom:20px;

}

.contact p{

    font-size:19px;
    margin-bottom:35px;

}

.contact .btn-primary{

    background:#fff;
    color:var(--primary);
    box-shadow:none;

}

.contact .btn-primary:hover{

    background:#f5f5f5;

}


/*==================================================
                    FOOTER
==================================================*/

footer{

    background:#14283C;
    color:#fff;
    padding:70px 0 25px;

}

.footer-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;

}

.footer-logo{

    width:180px;
    margin-bottom:20px;

}

footer h4{

    margin-bottom:20px;
    color:#fff;
    font-size:22px;

}

footer p{

    color:#ddd;
    line-height:1.8;

}

.copy{

    margin-top:60px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:25px;
    color:#ccc;
    font-size:15px;

}


/*==================================================
            BOTÓN WHATSAPP
==================================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 15px 30px rgba(0,0,0,.25);

    z-index:999;

    transition:.35s;

}

.whatsapp:hover{

    transform:scale(1.12);

}


/*==================================================
            BOTÓN SUBIR
==================================================*/

#top{

    position:fixed;

    bottom:105px;

    right:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--secondary);

    color:#fff;

    cursor:pointer;

    font-size:20px;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

#top.show{

    opacity:1;

    visibility:visible;

}

#top:hover{

    background:var(--primary);

}


/*==================================================
                EFECTOS GENERALES
==================================================*/

.service-card:hover img,
.industry-card:hover img{

    transform:scale(1.08);

}

.service-card img,
.industry-card img{

    transition:.5s;

}

.about-image{

    overflow:hidden;
    border-radius:20px;

}

.about-image img,
.about-video{

    transition:.6s;

}

.about-image:hover img,
.about-image:hover .about-video{

    transform:scale(1.05);

}

.about-video{

    object-fit:cover;

    width:100%;

    height:100%;

}

.about-image{

    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:var(--shadow);
    height:520px;

}

.about-video{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.6s;

}

.about-image:hover .about-video{

    transform:scale(1.05);

}

::selection{

    background:var(--primary);
    color:#fff;

}

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);
    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}