/* =====================================================
   CLÁUDIO PORTUGAL
   ARQUITETURA DE RESULTADOS®
   Design System v1.0
===================================================== */

/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{

    background:#0D1114;
    color:#F4F2ED;

    font-family:'Inter',sans-serif;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;
}

/* CORES */

:root{

    --background:#0D1114;

    --surface:#161C21;

    --surface-light:#1E252B;

    --white:#F4F2ED;

    --text:#D6D6D6;

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

    --copper:#8C6A47;

    --gold:#B39A63;

    --transition:.45s ease;

}

/* TIPOGRAFIA */

h1,h2,h3,h4{

    font-family:'Cormorant Garamond',serif;

    font-weight:600;

    letter-spacing:-1px;

}

h1{

    font-size:84px;

    line-height:1;

}

h2{

    font-size:64px;

}

h3{

    font-size:42px;

}

p{

    font-size:18px;

    line-height:1.9;

    color:var(--text);

}

/* LINKS */

a{

    text-decoration:none;

    color:inherit;

}

/* CONTAINER */

.container{

    width:min(1280px,92%);

    margin:auto;

}

/* NAVBAR */

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    transition:var(--transition);

}

.navbar{

    width:min(1400px,95%);

    margin:auto;

    height:100px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 10px;

    transition:.45s ease;

}
.logo{

display:flex;

align-items:center;

}

.logo img{

height:54px;

width:auto;

display:block;

transition:.45s ease;

}

.logo img:hover{

transform:scale(1.05);

}


nav ul{

    display:flex;

    gap:38px;

    list-style:none;

}

nav li{

    font-size:15px;

    color:#d0d0d0;

}

nav a{

    transition:.3s;

}

nav a:hover{

    color:var(--gold);

}

/* HERO */

.hero{

    position:relative;

    height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero video{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(8,10,12,.75),

        rgba(8,10,12,.78)

    );

}

.hero-content{

    position:relative;

    z-index:10;

    width:min(760px,90%);

    margin-left:8%;

}

.eyebrow{

    color:var(--gold);

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:30px;

}

.hero h1{

    margin-bottom:30px;

}

.hero h1 span{

    display:block;

    color:var(--gold);

    margin-top:12px;

}

.hero p{

    width:520px;

    max-width:100%;

    margin-bottom:50px;

}

/* BOTÕES */

.buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    background:var(--copper);

    color:white;

    padding:18px 34px;

    border-radius:50px;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-3px);

    background:#a37d55;

}

.btn-secondary{

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

    padding:18px 34px;

    border-radius:50px;

    transition:.35s;

}

.btn-secondary:hover{

    border-color:var(--gold);

    color:var(--gold);

}

/* SEÇÕES */

section{

    padding:140px 0;

}

/* RESPONSIVO */

@media(max-width:980px){

    nav ul{

        display:none;

    }

    h1{

        font-size:54px;

    }

    h2{

        font-size:42px;

    }

    .hero-content{

        margin:0 auto;

    }

}