/*=========================================
    GOOGLE FONTS
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*=========================================
    VARIABLES
=========================================*/

:root{

    --negro:#0b0b0b;
    --negro2:#141414;
    --gris:#8d8d8d;
    --blanco:#ffffff;
    --dorado:#D4AF37;
    --doradoHover:#f3ca49;

}


/*=========================================
    RESET
=========================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;

}

html{

    scroll-behavior:smooth;

}

body{

    background:black !important;

}


/*=========================================
    SCROLL
=========================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:var(--dorado);
    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#111;

}


/*=========================================
    HEADER
=========================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 8%;

    background:rgba(0,0,0,.82);

    backdrop-filter:blur(12px);

    z-index:999;

    border-bottom:1px solid rgba(255,255,255,.08);

}


.logo img{

    width:100px;

}
.header nav ul li a{

    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;

}

.header nav ul li a:hover{

    color: #c89b3c;

}
.btnCotizar{

    color: #000;
    text-decoration: none;

}

.btnPrincipal,
.btnSecundario,
.btnProyecto{

    text-decoration: none;

}
/*=========================================
    MENU
=========================================*/

nav ul{

    display:flex;
    align-items:center;
    list-style:none;
    gap:45px;

}

nav ul li{

    list-style:none;

}

nav ul li a,
nav ul li a:link,
nav ul li a:visited{

    color:#ffffff !important;
    text-decoration:none !important;
    font-size:16px;
    font-weight:600;
    transition:.3s;

}

nav ul li a:hover{

    color:#c89b3c !important;

}

nav ul li a:active{

    color:#c89b3c !important;

}

/*=========================================
    BOTON MENU
=========================================*/

.btnCotizar{

    display:inline-block;
    text-decoration:none !important;
    color:#000 !important;
    background:#c89b3c;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;

}

.btnCotizar:hover{

    background:#d9aa41;
    color:#000 !important;

}

/*=========================================
    HERO
=========================================*/

.hero{

    width:100%;

    height:100vh;

    position:relative;

    overflow:hidden;

}


.heroImagen{

    width:100%;

    height:100%;

    object-fit:cover;

}


.capa{

    position:absolute;

    inset:0;

    background:linear-gradient(

        to right,

        rgba(0,0,0,.92),

        rgba(0,0,0,.55),

        rgba(0,0,0,.40)

    );

}


.heroContenido{

    position:absolute;

    top:50%;

    left:8%;

    transform:translateY(-50%);

    width:650px;

    z-index:10;

}


.heroContenido span{

    color:var(--dorado);

    font-size:17px;

    letter-spacing:4px;

    font-weight:600;

}


.heroContenido h1{

    font-size:68px;

    line-height:78px;

    margin:18px 0;
color: white;
    font-weight:800;

}


.heroContenido p{

    color:#d2d2d2;

    font-size:18px;

    line-height:34px;

    margin-bottom:45px;

}


/*=========================================
    BOTONES HERO
=========================================*/

.botonesHero{

    display:flex;

    gap:20px;

}


.btnPrincipal{

    background:var(--dorado);

    color:black;

    text-decoration:none;

    padding:16px 36px;

    border-radius:60px;

    font-weight:700;

    transition:.4s;

}

.btnPrincipal:hover{

    background:var(--doradoHover);

    transform:translateY(-5px);

}


.btnSecundario{

    border:2px solid var(--dorado);

    color:white;

    text-decoration:none;

    padding:16px 36px;

    border-radius:60px;

    transition:.4s;

}

.btnSecundario:hover{

    background:var(--dorado);

    color:black;

}


/*=========================================
    HERO ANIMACION
=========================================*/

.heroContenido{

    animation:subir 1.2s;

}

@keyframes subir{

    from{

        opacity:0;

        transform:translateY(-35%);

    }

    to{

        opacity:1;

        transform:translateY(-50%);

    }

}


/*=========================================
    SECCIÓN PROYECTOS
=========================================*/

.proyectos{

    width:100%;

    padding:110px 8%;

    background:#0b0b0b;

}

.titulo{

    text-align:center;

    max-width:700px;

    margin:auto;

    margin-bottom:70px;

}

.titulo span{

    color:var(--dorado);

    font-size:15px;

    font-weight:600;

    letter-spacing:4px;

}

.titulo h2{

    font-size:50px;

    margin:18px 0;

    color:white;

    font-weight:700;

}

.titulo p{

    color:#9d9d9d;

    font-size:17px;

    line-height:30px;

}


/*=========================================
    GRID PROYECTOS
=========================================*/

.contenedorProyectos{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:35px;

}


/*=========================================
    TARJETA
=========================================*/

.cardProyecto{

    background:#151515;

    border-radius:18px;

    overflow:hidden;

    transition:.45s;

    border:1px solid rgba(255,255,255,.05);

    box-shadow:0 10px 30px rgba(0,0,0,.45);

    position:relative;

}

.cardProyecto:hover{

    transform:translateY(-12px);

    box-shadow:0 18px 40px rgba(212,175,55,.15);

    border-color:rgba(212,175,55,.35);

}


/*=========================================
    IMAGEN
=========================================*/

.cardImagen{

    width:100%;

    height:260px;

    overflow:hidden;

    position:relative;

}

.cardImagen img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.cardProyecto:hover .cardImagen img{

    transform:scale(1.08);

}

.cardImagen::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:120px;

    background:linear-gradient(to top,#151515,transparent);

}


/*=========================================
    ESTADO
=========================================*/

.estadoProyecto{

    position:absolute;

    top:18px;

    right:18px;

    background:rgba(212,175,55,.95);

    color:#111;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

}


/*=========================================
    CONTENIDO
=========================================*/

.cardContenido{

    padding:28px;

}

.cardContenido h3{

    color:white;

    font-size:25px;

    margin-bottom:18px;

    line-height:34px;

}

.cardContenido p{

    color:#aaaaaa;

    line-height:28px;

    margin-bottom:25px;

}


/*=========================================
    INFORMACIÓN
=========================================*/

.infoProyecto{

    display:flex;

    justify-content:space-between;

    margin-bottom:25px;

    color:#d4d4d4;

    font-size:15px;

}

.infoProyecto div{

    display:flex;

    align-items:center;

    gap:8px;

}

.infoProyecto i{

    color:var(--dorado);

}


/*=========================================
    BOTÓN
=========================================*/

.btnProyecto{

    display:inline-flex;

    align-items:center;

    gap:12px;

    color:var(--dorado);

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.btnProyecto i{

    transition:.35s;

}

.btnProyecto:hover{

    color:white;

}

.btnProyecto:hover i{

    transform:translateX(8px);

}


/*=========================================
    EFECTO DORADO
=========================================*/

.cardProyecto::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:4px;

    background:var(--dorado);

    transition:.6s;

}

.cardProyecto:hover::before{

    left:0;

}


/*=========================================
    BANNER
=========================================*/

.banner{

    margin-top:30px;

    padding:100px 8%;

    background:linear-gradient(135deg,#111,#1c1c1c);

    text-align:center;

    border-top:1px solid rgba(255,255,255,.05);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.banner h2{

    font-size:45px;

    color:white;

    margin-bottom:20px;

}

.banner p{

    color:#bdbdbd;

    font-size:18px;

    max-width:700px;

    margin:auto;

    line-height:32px;

}




/*=========================================
    FOOTER
=========================================*/

footer{

    width:100%;

    background:#080808;

    padding:70px 8%;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:40px;

}

.footerLogo img{

    width:170px;

}

footer h3{

    color:white;

    font-size:24px;

    margin-bottom:12px;

}

footer p{

    color:#9b9b9b;

    line-height:28px;

}

.redes{

    display:flex;

    gap:18px;

}

.redes a{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    background:#181818;

    color:var(--dorado);

    font-size:20px;

    transition:.4s;

    border:1px solid rgba(212,175,55,.25);

}

.redes a:hover{

    background:var(--dorado);

    color:black;

    transform:translateY(-5px);

}



/*=========================================
    ANIMACIONES
=========================================*/

.cardProyecto{

    animation:aparecer .8s ease;

}

@keyframes aparecer{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}



.heroContenido h1{

    animation:titulo 1.2s;

}

@keyframes titulo{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}



/*=========================================
    HOVER GENERAL
=========================================*/

a{

    transition:.35s;

}

button{

    transition:.35s;

}



/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:1200px){

.heroContenido{

    width:80%;

}

.heroContenido h1{

    font-size:58px;

    line-height:68px;

}

}



@media(max-width:992px){

.header{

    padding:0 5%;

}

nav ul{

    gap:20px;

}

.heroContenido{

    width:90%;

}

.heroContenido h1{
color: white;
    font-size:50px;

    line-height:60px;

}

.contenedorProyectos{

    grid-template-columns:repeat(2,1fr);

}

footer{

    flex-direction:column;

    text-align:center;

}

}



@media(max-width:768px){

.header{

    height:80px;

}

nav{

    display:none;

}

.btnCotizar{

    display:none;

}

.hero{

    height:85vh;

}

.heroContenido{

    left:6%;

    width:88%;

}

.heroContenido span{

    font-size:14px;

}

.heroContenido h1{
    color: white;

    font-size:38px;

    line-height:48px;

}

.heroContenido p{

    font-size:16px;

    line-height:28px;

}

.botonesHero{

    flex-direction:column;

    align-items:flex-start;

}

.titulo h2{

    font-size:36px;

}

.banner h2{

    font-size:34px;

}

.banner p{

    font-size:16px;

}

.contenedorProyectos{

    grid-template-columns:1fr;

}

}



@media(max-width:480px){

.heroContenido h1{
    color: white;

    font-size:32px;

    line-height:42px;

}

.heroContenido p{

    font-size:15px;

}

.btnPrincipal,
.btnSecundario{

    width:100%;

    text-align:center;

}

.cardContenido{

    padding:22px;

}

.cardContenido h3{

    font-size:22px;

}

.banner{

    padding:70px 25px;

}

.banner h2{

    font-size:28px;

}

footer{

    padding:50px 25px;

}

}















/* ======================================
MODAL PROYECTO
====================================== */

.modal-proyecto{

    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.80);
    justify-content:center;
    align-items:center;
    z-index:99999;
    padding:30px;
    overflow-y:auto;

}

.modal-proyecto.activo{

    display:flex;
    animation:fadeIn .35s ease;

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

.modal-proyecto-box{

    width:90%;
    max-width:560px;
    background:#111;
    border:1px solid rgba(212,175,55,.25);
    border-radius:22px;
    padding:45px;
    position:relative;
    text-align:center;
    box-shadow:0 25px 70px rgba(0,0,0,.55);
    animation:zoom .35s ease;

}

@keyframes zoom{

    from{

        transform:scale(.90);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

/* ==========================
BOTON CERRAR
========================== */

.cerrar-proyecto{

    position:absolute;
    top:15px;
    right:15px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#d4af37;
    color:#000;
    font-size:22px;
    cursor:pointer;
    transition:.3s;
    z-index:20;

}

.cerrar-proyecto:hover{

    transform:rotate(90deg);
    background:#fff;

}

/* ==========================
PORTADA
========================== */

.proyecto-portada{

    width:100%;
    height:350px;
    overflow:hidden;

}

.proyecto-portada img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

}

/* ==========================
INFORMACION
========================== */

.proyecto-info{

    padding:35px;

}

.proyecto-info h2{

    color:#fff;
    font-size:34px;
    margin-bottom:15px;

}

.estado-proyecto{

    margin-bottom:25px;

}

.estado-proyecto span{

    display:inline-block;
    background:#d4af37;
    color:#111;
    padding:8px 18px;
    border-radius:30px;
    font-weight:bold;
    font-size:14px;

}

.descripcion{

    color:#d8d8d8;
    line-height:1.8;
    margin-bottom:35px;

}

/* ==========================
DATOS
========================== */

.datos-proyecto{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:40px;

}

.dato{

    background:#1b1b1b;
    padding:18px;
    border-radius:12px;
    border-left:4px solid #d4af37;

}

.dato strong{

    display:block;
    color:#d4af37;
    margin-bottom:8px;

}

.dato span{

    color:#fff;

}

/* ==========================
GALERIA
========================== */

.titulo-galeria{

    color:#fff;
    margin-bottom:25px;
    font-size:24px;

}

.galeria-proyecto{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

}

.imagen-item{

    background:#1b1b1b;
    border-radius:12px;
    overflow:hidden;

}

.imagen-item h4{

    padding:15px;
    text-align:center;
    color:#d4af37;
    font-size:18px;

}

.imagen-item img{

    width:100%;
    height:260px;
    object-fit:cover;
    display:block;

}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:768px){

    .modal-proyecto{

        padding:15px;

    }

    .modal-proyecto-box{

        max-height:95vh;
        overflow-y:auto;

    }

    .proyecto-portada{

        height:220px;

    }

    .proyecto-info{

        padding:20px;

    }

    .proyecto-info h2{

        font-size:26px;

    }

    .galeria-proyecto{

        grid-template-columns:1fr;

    }

    .imagen-item img{

        height:220px;

    }

}
