/* ==========================================================
   NARCIZO ADVOCACIA CRIMINAL
   CRITICAL.CSS
   (ABOVE THE FOLD)
========================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

body{
    font-family:Inter,Arial,Helvetica,sans-serif;
    background:#fff;
    color:#3a3a3a;
    line-height:1.7;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
}

.container{
    width:min(94%,1180px);
    margin:auto;
}

.hero{
    width:100%;
    background:#fff;
}

.hero-image{
    position:relative;
    overflow:hidden;
    line-height:0;
}

.hero-image img{
    width:100%;
    aspect-ratio:1920/1080;
    object-fit:cover;
}

.logo{
    position:absolute;
    left:50%;
    top:42px;
    transform:translateX(-50%);
    width:290px;
    z-index:20;
}

.logo img{
    width:100%;
    height:auto;
}

.intro{
    background:#6B5437;
    color:#fff;
    padding:42px 0;
}

.intro p{
    width:min(94%,1040px);
    margin:auto;
    text-align:center;
    font-size:17px;
    line-height:1.9;
}

.hero-button{
    display:flex;
    justify-content:center;
    padding:50px 0 0;
}

.hero-button a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:250px;
    height:56px;
    border-radius:50px;
    background:#6B5437;
    color:#fff;
    font-weight:700;
    letter-spacing:.8px;
    text-transform:uppercase;
}

@media(max-width:991px){

.logo{
    width:220px;
    top:24px;
}

.hero-image img{
    aspect-ratio:4/3;
}

.intro{
    padding:34px 24px;
}

.intro p{
    font-size:16px;
}

}

@media(max-width:768px){

.logo{
    width:175px;
    top:18px;
}

.hero-image img{
    aspect-ratio:1/1;
}

.intro{
    padding:26px 20px;
}

.intro p{
    font-size:15px;
    line-height:1.8;
}

.hero-button{
    padding-top:36px;
}

.hero-button a{
    width:92%;
    max-width:290px;
}

}

@media(prefers-reduced-motion:reduce){

*{
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important;
}

}