/*==============================================================
=                       PARTE 1
=                 RESET + VARIABLES + BASE
==============================================================*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root{

    --bg:#0d1117;
    --bg2:#141b22;
    --bg3:#1a222c;

    --card:#171d24;
    --card-hover:#212b36;

    --gold:#c89a54;
    --gold-light:#ddb06d;
    --gold-dark:#9f6d34;

    --text:#f7f7f7;
    --text-light:#bfc7d0;

    --border:rgba(255,255,255,.08);

    --radius:24px;

    --shadow:
    0 18px 60px rgba(0,0,0,.35);

    --transition:.35s;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);

    color:var(--text);

    font-family:Montserrat,sans-serif;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(1380px,92%);

    margin:auto;

}

section{

    padding:110px 0;

}

h1,h2,h3,h4{

    font-weight:700;

}

p{

    color:var(--text-light);

    line-height:1.9;

}

/*==============================================================
=                      HEADER
==============================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

    background:rgba(8,10,12,.35);

    backdrop-filter:blur(18px);

    border-bottom:1px solid transparent;

}

.header.scrolled{

    background:rgba(10,10,10,.92);

    border-color:rgba(255,255,255,.08);

    box-shadow:0 10px 35px rgba(0,0,0,.45);

}

.header-content{

    height:88px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    height:76px;

    transition:.4s;

}

.header.scrolled .logo img{

    height:66px;

}

.nav{

    display:flex;

    gap:42px;

}

.nav a{

    color:#fff;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.nav a:hover{

    color:var(--gold);

}

.nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.35s;

}

.nav a:hover::after,

.nav .active::after{

    width:100%;

}

#menuBtn{

    width:54px;

    height:54px;

    display:none;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    border:none;

    border-radius:14px;

    cursor:pointer;

    font-size:21px;

    transition:.35s;

}

#menuBtn:hover{

    background:var(--gold);

}

/*==============================================================
=                     HERO
==============================================================*/

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.hero-slider{

    position:absolute;

    inset:0;

}

.hero-slide{

    position:absolute;

    inset:0;

    opacity:0;

    visibility:hidden;

    transform:scale(1.08);

    transition:

    opacity 1.3s,

    transform 7s linear,

    visibility 1.3s;

}

.hero-slide.active{

    opacity:1;

    visibility:visible;

    transform:scale(1);

}

.hero-slide img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(90deg,

    rgba(0,0,0,.75),

    rgba(0,0,0,.45),

    rgba(0,0,0,.18),

    rgba(0,0,0,.55)),

    linear-gradient(to top,

    #0d1117,

    transparent 22%);

    z-index:2;

}

.hero-content{

    position:relative;

    z-index:5;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.hero-logo{

    width:220px;

    margin-bottom:35px;

    filter:drop-shadow(0 18px 35px rgba(0,0,0,.55));

    animation:fadeDown 1s;

}

.hero h1{

    font-size:72px;

    text-transform:uppercase;

    margin-bottom:20px;

    line-height:1.1;

}

.hero p{

    width:min(760px,92%);

    font-size:20px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.btn{

    padding:17px 38px;

    border-radius:50px;

    background:var(--gold);

    border:2px solid var(--gold);

    color:#fff;

    font-weight:700;

    transition:.35s;

}

.btn:hover{

    background:transparent;

    color:var(--gold);

}

.btn-outline{

    background:transparent;

    border-color:#fff;

}

.btn-outline:hover{

    background:#fff;

    color:#111;

}
/*==============================================================
=                      HERO CONTROLS
==============================================================*/

.hero-arrow{

    display:none !important;

}

.hero-dots{

    display:none !important;

}
/*==============================================================
=                    TITULOS
==============================================================*/

.section-tag{

    display:flex;

    width:fit-content;

    align-items:center;

    justify-content:center;

    padding:10px 24px;

    border-radius:40px;

    background:rgba(200,154,84,.12);

    color:var(--gold);

    font-size:13px;

    letter-spacing:2px;

    font-weight:700;

    margin:0 auto 28px;

}

.section-title{

    width:100%;

    max-width:900px;

    margin:0 auto 95px;

    text-align:center;

    font-size:48px;

    line-height:1.2;

}

.section-text{

    max-width:760px;

    margin:0 auto;

    color:var(--text-light);

    line-height:2;

    text-align:center;

}
/*==============================================================
=                    NUESTRA HISTORIA
==============================================================*/

.history{

    background:linear-gradient(180deg,#10151b,#0d1117);

}

.history-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.history-image{

    position:relative;

}

.history-image img{

    width:100%;

    border-radius:28px;

    box-shadow:var(--shadow);

    transition:.55s;

}

.history-image:hover img{

    transform:scale(1.04);

}

.history-text h2{

    font-size:46px;

    margin:20px 0;

}

.history-text p{

    margin-bottom:24px;

}

.history-data{

    display:flex;

    gap:55px;

    margin-top:35px;

}

.history-data div{

    display:flex;

    flex-direction:column;

}

.history-data strong{

    font-size:48px;

    color:var(--gold);

}

.history-data span{

    margin-top:8px;

    color:#c5c5c5;

}

/*==============================================================
=                  POR QUÉ ELEGIRNOS
==============================================================*/

.features{

    background:#10151b;

}

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
    gap:32px;
    margin-top:110px;
}

.features-grid article{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:46px 36px;

    text-align:center;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.features-grid article::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(135deg,
    rgba(200,154,84,.18),
    transparent);

    opacity:0;

    transition:.35s;

}

.features-grid article:hover{

    transform:translateY(-10px);

    border-color:rgba(200,154,84,.45);

}

.features-grid article:hover::before{

    opacity:1;

}

.features-grid i{

    width:78px;

    height:78px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:rgba(200,154,84,.12);

    color:var(--gold);

    font-size:32px;

    margin:0 auto 28px;

}

.features-grid h3{

    font-size:24px;

    margin-bottom:18px;

}

.features-grid p{

    color:var(--text-light);

    line-height:1.9;

}

/*==============================================================
=                     SERVICIOS HOME
==============================================================*/

.services{

    background:linear-gradient(180deg,#0d1117,#111820);

}


.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:32px;
    margin-top:110px;
}

.service-card{

    overflow:hidden;

    background:var(--card);

    border-radius:28px;

    border:1px solid var(--border);

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.service-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.65s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-content{

    padding:36px;

    text-align:center;

}

.service-content h3{

    font-size:28px;

    margin-bottom:18px;

}

.service-content p{

    line-height:1.9;

    color:var(--text-light);

}

/*==============================================================
=                  PROCESO DE TRABAJO
==============================================================*/

.process{

    padding:120px 0;

    background:linear-gradient(180deg,#10151b,#0d1117);

    position:relative;

    overflow:hidden;

}

.process::before{

    content:"";

    position:absolute;

    width:900px;

    height:900px;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    background:radial-gradient(circle,rgba(215,168,79,.08),transparent 70%);

    pointer-events:none;

}

.process-header{

    max-width:850px;

    margin:0 auto 80px;

    text-align:center;

}

.process-title{

    font-size:46px;

    line-height:1.15;

    margin-top:18px;

}

.process-text{

    max-width:700px;

    margin:24px auto 0;

    color:var(--text-soft);

    line-height:1.9;

}

/*==============================================================
LAYOUT
==============================================================*/

.process-layout{

    display:grid;

    grid-template-columns:320px 1fr 320px;

    align-items:center;

    gap:45px;

}

.process-column{

    display:flex;

    flex-direction:column;

    gap:30px;

}

/*==============================================================
CARDS
==============================================================*/

.process-card{

    position:relative;

    padding:35px 30px;

    border-radius:28px;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    overflow:hidden;

}

.process-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#d7a84f,#f3cb76);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.process-card:hover{

    transform:translateY(-10px);

    border-color:rgba(215,168,79,.35);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.process-card:hover::before{

    transform:scaleX(1);

}

.step-icon{

    width:68px;

    height:68px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:22px;

    background:linear-gradient(145deg,#d7a84f,#c58a2a);

    color:#111;

    font-weight:800;

    font-size:24px;

    box-shadow:0 0 30px rgba(215,168,79,.28);

}

.process-card h3{

    font-size:28px;

    margin-bottom:15px;

    color:#fff;

}

.process-card p{

    color:var(--text-soft);

    line-height:1.8;

}

/*==============================================================
VIDEO
==============================================================*/

.process-center{

    display:flex;

    justify-content:center;

    align-items:center;

}

.process-video-card{

    position:relative;

    width:100%;

    max-width:560px;

    height:680px;

    overflow:hidden;

    border-radius:34px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:

    0 35px 80px rgba(0,0,0,.45),

    inset 0 1px rgba(255,255,255,.08);

}

.process-video-card video{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:1s;

}

.process-video-card:hover video{

    transform:scale(1.06);

}

.process-video-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        135deg,

        rgba(255,255,255,.14),

        transparent 40%

    );

    z-index:2;

}

.process-video-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:700px;

    left:-260px;

    top:-100px;

    transform:rotate(25deg);

    background:linear-gradient(

        rgba(255,255,255,0),

        rgba(255,255,255,.18),

        rgba(255,255,255,0)

    );

    transition:1.5s;

    z-index:4;

}

.process-video-card:hover::after{

    left:760px;

}

.video-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.88),

        rgba(0,0,0,.18),

        rgba(0,0,0,.04)

    );

    z-index:2;

}

.video-badge{

    position:absolute;

    top:26px;

    left:26px;

    padding:12px 22px;

    border-radius:999px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(14px);

    color:#fff;

    font-size:14px;

    font-weight:600;

    z-index:5;

}

.video-info{

    position:absolute;

    left:34px;

    right:34px;

    bottom:34px;

    z-index:5;

}

.video-info h3{

    font-size:40px;

    color:#fff;

    margin-bottom:14px;

}

.video-info p{

    color:#ddd;

    line-height:1.8;

}
/*==============================================================
ANIMACIONES
==============================================================*/

.process-card{

    opacity:0;

    transform:translateY(40px);

    animation:cardIn .8s forwards;

}

.process-column .process-card:nth-child(1){

    animation-delay:.15s;

}

.process-column .process-card:nth-child(2){

    animation-delay:.35s;

}

.process-center{

    opacity:0;

    transform:scale(.92);

    animation:centerIn .9s .2s forwards;

}

@keyframes cardIn{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes centerIn{

    from{

        opacity:0;

        transform:scale(.92);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

/*==============================================================
HOVER
==============================================================*/

.process-layout:hover .process-video-card{

    box-shadow:

        0 45px 90px rgba(0,0,0,.55),

        0 0 50px rgba(215,168,79,.08),

        inset 0 1px rgba(255,255,255,.08);

}

.process-card:hover .step-icon{

    transform:scale(1.08) rotate(8deg);

    box-shadow:

        0 0 35px rgba(215,168,79,.45);

}

.step-icon{

    transition:.35s;

}

.process-card h3{

    transition:.35s;

}

.process-card:hover h3{

    color:var(--gold);

}

/*==============================================================
COLUMNAS
==============================================================*/

.process-column:first-child{

    align-items:flex-end;

}

.process-column:last-child{

    align-items:flex-start;

}

.process-column:first-child .process-card{

    margin-right:10px;

}

.process-column:last-child .process-card{

    margin-left:10px;

}

/*==============================================================
RESPONSIVE
==============================================================*/

@media(max-width:1300px){

    .process-layout{

        grid-template-columns:280px 1fr 280px;

        gap:28px;

    }

    .process-video-card{

        max-width:480px;

        height:610px;

    }

    .process-card{

        padding:30px 24px;

    }

    .process-card h3{

        font-size:24px;

    }

}

@media(max-width:1100px){

    .process-layout{

        grid-template-columns:1fr;

        gap:35px;

    }

    .process-column{

        width:100%;

        max-width:720px;

        margin:0 auto;

        align-items:stretch !important;

    }

    .process-column .process-card{

        margin:0 !important;

    }

    .process-center{

        order:-1;

    }

    .process-video-card{

        width:100%;

        max-width:720px;

        height:520px;

        margin:auto;

    }

}
/*==============================================================
=                  GALERIA HOME
==============================================================*/

.gallery-section{

    padding:100px 0;

    background:linear-gradient(180deg,#0d1117,#141b22);

    overflow:hidden;

}

.gallery-header{

    width:100%;

    max-width:900px;

    margin:0 auto 80px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

}

/*======================
    CARRUSEL
=======================*/

.gallery-slider{

    width:100%;

    overflow:hidden;

    position:relative;

    margin-top:80px;

}

.gallery-track{

    display:flex;

    gap:24px;

    width:max-content;

    animation:galleryScroll 45s linear infinite;

}

.gallery-slider:hover .gallery-track{

    animation-play-state:paused;

}

.gallery-track img{

    width:420px;

    height:320px;

    object-fit:cover;

    border-radius:22px;

    flex-shrink:0;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.gallery-track img:hover{

    transform:scale(1.05);

    box-shadow:0 25px 55px rgba(0,0,0,.45);

}

@keyframes galleryScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(calc(-50% - 12px));

    }

}

/*======================
        MODAL
=======================*/

.gallery-modal{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.92);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

    padding:40px;

}

.gallery-modal.active{

    opacity:1;

    visibility:visible;

}

.gallery-modal-content{

    position:relative;

    transform:scale(.9);

    transition:.35s;

}

.gallery-modal.active .gallery-modal-content{

    transform:scale(1);

}

.gallery-modal img{

    width:auto;

    max-width:92vw;

    max-height:90vh;

    border-radius:18px;

    object-fit:contain;

    box-shadow:0 30px 80px rgba(0,0,0,.6);

}

.gallery-close{

    position:absolute;

    top:25px;

    right:35px;

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    color:#fff;

    font-size:38px;

    line-height:1;

    cursor:pointer;

    transition:.3s;

    z-index:100000;

    user-select:none;

}

.gallery-close:hover{

    background:var(--accent);

    color:#111;

    transform:rotate(90deg);

}

/*==============================================================
=                 HERO PAGINAS INTERNAS
==============================================================*/

.pagehead{

    position:relative;

    min-height:520px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    padding:180px 0 120px;

    background:#0d1117;

}

.pagehead-bg{

    position:absolute;

    inset:0;

    z-index:1;

}

.pagehead-bg img{

    width:100%;

    height:100%;

    object-fit:cover;

    transform:scale(1.05);

}

.pagehead-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.72)),
    linear-gradient(to bottom,
    rgba(13,17,23,.10),
    #0d1117);

    z-index:2;

}

.pagehead-content{

    position:relative;

    z-index:5;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    max-width:900px;

}

.pagehead .section-tag{

    margin:0 auto 28px;

}

.pagehead h1{

    font-size:68px;

    font-weight:800;

    line-height:1.05;

    letter-spacing:-2px;

    margin-bottom:24px;

    color:#fff;

    text-align:center;

}

.pagehead h1::after{

    content:"";

    display:block;

    width:110px;

    height:5px;

    margin:30px auto 0;

    border-radius:20px;

    background:linear-gradient(90deg,var(--gold),var(--gold-light));

}

.pagehead p{

    max-width:760px;

    margin:0 auto 42px;

    font-size:20px;

    line-height:2;

    color:rgba(255,255,255,.88);

    text-align:center;

}

/*==============================================================
=                 PAGINA SERVICIOS
==============================================================*/

.services-page{

    background:linear-gradient(180deg,#10151b,#0d1117);

    padding:110px 0;

}

.services-page .section-tag{

    margin:0 auto 24px;

}

.services-page h1{

    font-size:60px;

    font-weight:800;

    text-align:center;

    margin-bottom:22px;

    letter-spacing:-1px;

    line-height:1.1;

}

.services-page h1::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    margin:24px auto 0;

    border-radius:30px;

    background:linear-gradient(90deg,var(--gold),var(--gold-light));

}

.services-page > .container > p{

    max-width:760px;

    margin:0 auto;

    text-align:center;

    font-size:18px;

    line-height:1.9;

    color:var(--text-light);

}

.services-page-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:34px;

    margin-top:90px;

}

.service-box{

    background:var(--card);

    border-radius:26px;

    overflow:hidden;

    border:1px solid var(--border);

    transition:.4s;

}

.service-box:hover{

    transform:translateY(-10px);

    border-color:rgba(200,154,84,.45);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.service-box img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.6s;

}

.service-box:hover img{

    transform:scale(1.08);

}

.service-info{

    padding:34px;

    text-align:center;

}

.service-info h3{

    font-size:28px;

    margin-bottom:18px;

}

.service-info p{

    margin-bottom:28px;

    color:var(--text-light);

    line-height:1.9;

}

.service-info ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.service-info ul li{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    color:var(--text-light);

}

.service-info ul li::before{

    content:"✓";

    color:var(--gold);

    font-weight:700;

}

/*==============================================================
=                BANNER INTERMEDIO
==============================================================*/

.banner{

    padding:130px 0;

    background:

    linear-gradient(rgba(0,0,0,.65),

    rgba(0,0,0,.65)),

    url("../img/banner-servicios.jpg") center/cover;

    text-align:center;

}

.banner h2{

    font-size:52px;

    margin-bottom:25px;

}

.banner p{

    max-width:760px;

    margin:auto;

    font-size:18px;

    line-height:2;

}
/*==============================================================
=                    CONTACTO
==============================================================*/

.contact-section{

    background:linear-gradient(180deg,#0d1117,#141b22);

}

.contact-layout{

    display:grid;

    grid-template-columns:1.4fr .8fr;

    gap:40px;

    align-items:start;

}

.contact-form{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:28px;

    padding:45px;

    box-shadow:var(--shadow);

}

.contact-form h2{

    font-size:40px;

    margin-bottom:15px;

}

.contact-form p{

    margin-bottom:35px;

}

.form-group{

    display:flex;

    flex-direction:column;

    margin-bottom:22px;

}

.form-group label{

    margin-bottom:10px;

    font-weight:600;

    color:#fff;

}

.form-group input,
.form-group textarea{

    width:100%;

    padding:18px 22px;

    border-radius:16px;

    border:1px solid var(--border);

    background:#10151b;

    color:#fff;

    transition:.35s;

    font-size:15px;

}

.form-group textarea{

    resize:none;

    min-height:180px;

}

.form-group input:focus,
.form-group textarea:focus{

    outline:none;

    border-color:var(--gold);

    box-shadow:0 0 0 4px rgba(200,154,84,.15);

}

.contact-form button{

    width:100%;

    padding:18px;

    border:none;

    border-radius:16px;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    color:#fff;

    font-weight:700;

    font-size:16px;

    cursor:pointer;

    transition:.35s;

}

.contact-form button:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.30);

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.contact-card{

    background:var(--card);

    border-radius:26px;

    border:1px solid var(--border);

    padding:32px;

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-8px);

    border-color:rgba(200,154,84,.45);

}

.contact-card i{

    width:62px;

    height:62px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:rgba(200,154,84,.12);

    color:var(--gold);

    font-size:24px;

    margin-bottom:22px;

}

.contact-card h3{

    margin-bottom:12px;

    font-size:24px;

}

.contact-card p{

    line-height:1.9;

}

.contact-card a{

    color:var(--text-light);

    transition:.35s;

}

.contact-card a:hover{

    color:var(--gold);

}

.map{

    margin-top:70px;

    overflow:hidden;

    border-radius:28px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

}

.map iframe{

    display:block;

    width:100%;

    height:500px;

    border:0;

}

/*==============================================================
=                  CTA FINAL
==============================================================*/

.cta-final{

    padding:120px 0;

    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.72)),
    url("../img/cta-final.jpg") center/cover;

}

.cta-final h2{

    font-size:52px;

    margin-bottom:20px;

}

.cta-final p{

    max-width:760px;

    margin:0 auto 40px;

    font-size:18px;

    line-height:2;

}

.cta-final .btn{

    font-size:17px;

    padding:18px 45px;

}

/*==============================================================
=                  FOOTER PREMIUM
==============================================================*/

.footer{

    background:#090d11;

    border-top:1px solid rgba(255,255,255,.06);

    padding-top:90px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:170px;

    margin-bottom:25px;

}

.footer-about p{

    max-width:420px;

}

.footer h3{

    font-size:22px;

    margin-bottom:25px;

}

.footer ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer ul a{

    color:var(--text-light);

    transition:.3s;

}

.footer ul a:hover{

    color:var(--gold);

    padding-left:8px;

}

.socials{

    display:flex;

    gap:14px;

}

.socials a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#1d232b;

    color:#fff;

    transition:.35s;

}

.socials a:hover{

    background:var(--gold);

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.08);

    padding:28px 0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:10px;

    text-align:center;

    color:#9ba4af;

}

.footer-bottom p{

    margin:0;

}

.footer-bottom span{

    margin:0;

}
/*==============================================================
=                   WHATSAPP FLOAT
==============================================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:68px;

    height:68px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#25D366;

    color:#fff;

    font-size:34px;

    box-shadow:0 18px 40px rgba(0,0,0,.35);

    z-index:999;

    transition:.35s;

}

.whatsapp:hover{

    transform:translateY(-6px) scale(1.08);

    box-shadow:0 25px 50px rgba(0,0,0,.45);

}

/*==============================================================
=                   SCROLL REVEAL
==============================================================*/

.reveal{

    opacity:0;

    transform:translateY(70px);

    transition:1s cubic-bezier(.2,.8,.2,1);

}

.reveal.active{

    opacity:1;

    transform:none;

}

.fade-left{

    opacity:0;

    transform:translateX(-70px);

    transition:1s;

}

.fade-left.active{

    opacity:1;

    transform:none;

}

.fade-right{

    opacity:0;

    transform:translateX(70px);

    transition:1s;

}

.fade-right.active{

    opacity:1;

    transform:none;

}

/*==============================================================
=                   SCROLLBAR
==============================================================*/

::-webkit-scrollbar{

    width:11px;

}

::-webkit-scrollbar-track{

    background:#0c1116;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(var(--gold),var(--gold-dark));

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gold-light);

}

/*==============================================================
=                   TEXT SELECTION
==============================================================*/

::selection{

    background:var(--gold);

    color:#fff;

}

/*==============================================================
=                   ANIMACIONES
==============================================================*/

@keyframes fadeDown{

    from{

        opacity:0;

        transform:translateY(-60px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

@keyframes zoom{

    from{

        transform:scale(1.08);

    }

    to{

        transform:scale(1);

    }

}

@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.05);

    }

    100%{

        transform:scale(1);

    }

}

.hero-slide.active img{

    animation:zoom 7s linear forwards;

}

.btn:hover{

    animation:pulse .5s;

}

/*==============================================================
=                   UTILIDADES
==============================================================*/

.text-center{

    text-align:center;

}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

.shadow{

    box-shadow:var(--shadow);

}

.gold{

    color:var(--gold);

}

.bg-dark{

    background:var(--bg);

}



/*==============================================================
=                   RESPONSIVE
==============================================================*/

@media (max-width:1200px){

    .history-grid,
    .contact-layout{

        grid-template-columns:1fr;

        gap:60px;

    }

    .gallery-grid{

        grid-template-columns:repeat(3,1fr);

    }

    .services-page-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .process-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }


        .process-layout{

        grid-template-columns:1fr;

    }

    .process-right{

        margin-top:40px;

    }

    .process-video-card{

    width:500px;
    height:600px;

}
        .process-orbit{

        width:100%;

        height:auto;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:35px;

    }

    .process-center,
    .orbit-step,
    .orbit-line{

        position:relative;

        left:auto;

        right:auto;

        top:auto;

        bottom:auto;

        transform:none !important;

    }

    .orbit-line{

        display:none;

    }

    .process-video-card{

        width:100%;

        max-width:560px;

        height:650px;

    }

    .orbit-step{

        width:100%;

        max-width:560px;

    }

}

@media (max-width:992px){

    .logo{
        display:none;
    }

    .header-content{
        justify-content:flex-end;
    }

    .hero-content{
        padding:0 20px;
    }

    .hero-logo{
        width:180px;
        margin:0 auto 25px;
    }

    .hero h1{
        text-align:center;
    }

    .hero p{
        text-align:center;
        margin:0 auto;
    }


    #menuBtn{

        display:flex;

    }

    .nav{

        position:fixed;

        top:88px;

        right:-100%;

        width:310px;

        height:calc(100vh - 88px);

        background:#111820;

        flex-direction:column;

        justify-content:flex-start;

        align-items:flex-start;

        padding:45px;

        gap:25px;

        transition:.4s;

    }

    .nav.active{

        right:0;

    }

    .hero h1{

        font-size:48px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .gallery-grid{

        grid-template-columns:repeat(2,1fr);

    }

        .gallery-track img{

        width:340px;

        height:260px;

    }


}

@media (max-width:768px){

    .hero-content{
        justify-content:center;
        align-items:center;
        text-align:center;
        padding:0 18px;
    }

    .hero-buttons{
        display:none;
    }

    .hero-logo{
        width:135px;
        margin:0 auto 20px;
    }

    .hero h1{
        font-size:34px;
        line-height:1.15;
    }

    .hero p{
        font-size:15px;
        max-width:95%;
        margin:0 auto;
    }

    .pagehead-content{
        padding:0 18px;
    }

    .pagehead h1{
        text-align:center;
    }

    .contact-card,
    .service-content,
    .service-info,
    .history-text,
    .process-card,
    .footer-about{
        text-align:center;
    }

    .history-data{
        justify-content:center;
        text-align:center;
        flex-wrap:wrap;
    }


    section{

        padding:80px 0;

    }

    .hero{

        min-height:760px;

    }

    .hero-logo{

        width:150px;

    }

    .hero h1{

        font-size:38px;

    }

    .features-grid,
    .services-grid,
    .services-page-grid,
    .gallery-grid,
    .process-grid,
    .testimonials-grid,
    .stats-grid,
    .footer-grid{

        grid-template-columns:1fr;

    }

    .footer-bottom{

        flex-direction:column;

        gap:10px;

        text-align:center;

    }

        .gallery-section{

        padding:70px 0;

    }

    .gallery-slider{

        margin-top:50px;

    }

    .gallery-track{

        gap:16px;

    }

    .gallery-track img{

        width:280px;

        height:220px;

        border-radius:16px;

    }

    .gallery-close{

        top:15px;

        right:15px;

        width:48px;

        height:48px;

        font-size:30px;

    }

    .gallery-modal{

        padding:20px;

    }

}

@media (max-width:576px){

    .hero-buttons{
        display:none;
    }

    .hero-logo{
        width:120px;
    }

    .service-card img,
    .service-box img{
        height:210px;
    }

    .contact-form{
        padding:28px 22px;
    }

    .contact-form h2{
        text-align:center;
        font-size:32px;
    }

    .contact-info{
        text-align:center;
    }

    .contact-card i{
        margin:0 auto 20px;
    }

    .footer-logo{
        margin:0 auto 20px;
    }


    .container{

        width:92%;

    }

    .hero h1{

        font-size:31px;

    }

    .hero p{

        font-size:16px;

    }

    .pagehead h1{

        font-size:42px;

    }

    .section-title{

        font-size:30px;

    }

    .btn{

        width:100%;

        text-align:center;

    }

    .hero-buttons{

        width:100%;

    }

    .whatsapp{

        width:58px;

        height:58px;

        right:18px;

        bottom:18px;

        font-size:28px;

    }


        .process{

        padding:80px 0;

    }

    .process-header{

        margin-bottom:55px;

    }

    .process-title{

        font-size:36px;

    }

    .process-text{

        font-size:16px;

        line-height:1.8;

    }

    .process-layout{

        gap:28px;

    }

    .process-column{

        gap:22px;

    }

    .process-card{

        padding:26px 22px;

        border-radius:22px;

    }

    .step-icon{

        width:60px;

        height:60px;

        font-size:20px;

        margin-bottom:18px;

    }

    .process-card h3{

        font-size:22px;

    }

    .process-video-card{

        height:420px;

        border-radius:24px;

    }

    .video-badge{

        top:18px;

        left:18px;

        font-size:13px;

        padding:10px 18px;

    }

    .video-info{

        left:24px;

        right:24px;

        bottom:24px;

    }

    .video-info h3{

        font-size:30px;

    }

    .video-info p{

        font-size:15px;

    }

}

@media(max-width:480px){

    .process-title{

        font-size:30px;

    }

    .process-card{

        padding:22px 18px;

    }

    .process-card h3{

        font-size:20px;

    }

    .process-video-card{

        height:340px;

    }

    .video-info h3{

        font-size:24px;

    }

}
