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

.hero::after{

content:"";

position:absolute;

right:-300px;

top:-200px;

width:900px;

height:900px;

background:radial-gradient(circle,
rgba(179,154,99,.12),
transparent 65%);

pointer-events:none;

animation:heroGlow 10s ease-in-out infinite;

}

@keyframes heroGlow{

0%{

transform:scale(.95);

opacity:.45;

}

50%{

transform:scale(1.1);

opacity:.9;

}

100%{

transform:scale(.95);

opacity:.45;

}

}
/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{

   background:
radial-gradient(circle at top right,
rgba(184,135,83,.08),
transparent 45%),
linear-gradient(#090b0d,#050607);
}

/* 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;

top:0;

left:0;

width:100%;

z-index:999;

background:rgba(13,17,20,.15);

backdrop-filter:blur(16px);

-webkit-backdrop-filter:blur(16px);

border-bottom:1px solid rgba(255,255,255,.05);

transition:.45s ease;

}

.navbar{

width:min(1380px,94%);

height:72px;

margin:auto;

display:flex;

align-items:center;

justify-content:space-between;

}

/* ===================================
LOGO
=================================== */

.logo{

display:flex;

align-items:center;

justify-content:center;

}

.logo a{

display:flex;

align-items:center;

justify-content:center;

}

.logo-image{

width:64px;

height:64px;

object-fit:contain;

display:block;

transition:.45s ease;

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

}

.logo-image:hover{

transform:scale(1.06);

}



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:9vw;

max-width:760px;

}

.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;

    }

}/* ===================================================
FILOSOFIA
=================================================== */

.philosophy{

padding:180px 0;

background:#10161B;

text-align:center;

}

.philosophy-container{

max-width:900px;

}

.section-label{

display:inline-block;

font-size:13px;

letter-spacing:4px;

text-transform:uppercase;

color:var(--gold);

margin-bottom:35px;

}

.philosophy h2{

font-size:58px;

line-height:1.15;

margin-bottom:70px;

}

.philosophy-symbol{

margin-bottom:60px;

}

.philosophy-symbol img{

width:82px;

opacity:.9;

}

.philosophy-text{

max-width:640px;

margin:auto;

font-size:22px;

line-height:1.9;

color:#CFCFCF;

}