/* =========================================================
   LAZER COMPLETO
========================================================= */

.lazer{
    width:100%;
    padding:90px 0;
    background:#f4ead6;
    overflow:hidden;
}

.lazer-container{
    width:88%;
    max-width:1500px;
    margin:0 auto;
}

/* =========================================================
   TOPO
========================================================= */

.lazer-topo{
    display:grid;
    grid-template-columns:180px 1fr 1fr;
    gap:50px;
    align-items:start;
    margin-bottom:60px;
}

.lazer-label{
    color:#c7a15e;
    font-family:'HomepageBold', Arial, sans-serif;
    font-size:13px;
    line-height:1.4;
    letter-spacing:5px;
    text-transform:uppercase;
    padding-top:18px;
}

.lazer-topo h2{
    color:#00263f;
    font-family:'Crosever', serif;
    font-size:62px;
    line-height:1.05;
    font-weight:normal;
    padding-left:38px;
    border-left:1px solid rgba(199,161,94,.7);
    margin:0;
}

.lazer-texto{
    padding-top:10px;
}

.lazer-texto p{
    color:#00263f;
    font-family:'HomepageBook', Arial, sans-serif;
    font-size:18px;
    line-height:1.8;
    margin:0;
}

/* =========================================================
   GRID DE LAZER
========================================================= */

.lazer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.lazer-card{
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    text-align:center;
}

.lazer-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
    cursor:pointer;
    transition:.3s;
}

.lazer-card img:hover{
    transform:scale(1.03);
}

.lazer-card h3{
    color:#00263f;
    font-family:'HomepageBold', Arial, sans-serif;
    font-size:17px;
    line-height:1.3;
    letter-spacing:1.5px;
    text-transform:uppercase;
    text-align:center;
    padding:22px 14px;
    margin:0;
}

.lazer-card h3:after{
    content:"";
    display:block;
    width:34px;
    height:3px;
    background:#c7a15e;
    margin:14px auto 0 auto;
}

/* =========================================================
   MODAL FOTO AMPLIADA
========================================================= */

.modal-lazer{
    display:none;
    position:fixed;
    z-index:99999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.94);
    justify-content:center;
    align-items:center;
}

.modal-lazer img{
    max-width:90%;
    max-height:88%;
    display:block;
    border-radius:18px;
}

.fechar-modal-lazer{
    position:absolute;
    top:20px;
    right:35px;
    color:#ffffff;
    font-family:Arial, sans-serif;
    font-size:56px;
    line-height:1;
    cursor:pointer;
}

/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width:1100px){

    .lazer-topo{
        grid-template-columns:1fr;
        gap:20px;
    }

    .lazer-topo h2{
        border-left:none;
        padding-left:0;
        font-size:42px;
    }

    .lazer-label{
        padding-top:0;
    }

    .lazer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

    .lazer-card img{
        height:250px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width:768px){

    .lazer{
        padding:70px 0;
    }

    .lazer-container{
        width:88%;
    }

    .lazer-topo h2{
        font-size:34px;
    }

    .lazer-texto p{
        font-size:16px;
    }

    .lazer-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .lazer-card img{
        height:230px;
    }

    .lazer-card h3{
        font-size:15px;
        padding:20px 12px;
    }

    .fechar-modal-lazer{
        font-size:46px;
        right:22px;
    }
}