/*==================================================
  RESET
==================================================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#070707;
    color:#F5F5F5;
    overflow-x:hidden;
    line-height:1.7;
}

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

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

ul{
    list-style:none;
}

/*==================================================
  VARIÁVEIS
==================================================*/

:root{

    --gold:#C8A14D;

    --gold2:#D8B15A;

    --bg:#070707;

    --bg2:#111111;

    --bg3:#1B1B1B;

    --card:#181818;

    --text:#F8F8F8;

    --text2:#B8B8B8;

    --border:#2C2C2C;

    --radius:18px;

    --transition:.35s ease;

    --shadow:0 20px 50px rgba(0,0,0,.45);

    --container:1400px;

}

/*==================================================
  CONTAINER
==================================================*/

.container{

    width:min(92%,var(--container));

    margin:auto;

}

section{

    padding:100px 0;

}

.section.dark{

    background:var(--bg2);

}

/*==================================================
  TÍTULOS
==================================================*/

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.section-tag{

    display:inline-block;

    color:var(--gold);

    font-size:.85rem;

    letter-spacing:3px;

    margin-bottom:15px;

    font-weight:600;

}

.section-header h2{

    font-family:'Playfair Display',serif;

    font-size:3rem;

    font-weight:700;

    line-height:1.2;

}

/*==================================================
  BOTÕES
==================================================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:50px;

    background:var(--gold);

    color:#111;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 0 25px rgba(200,161,77,.45);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border:1px solid var(--gold);

    border-radius:50px;

    color:var(--gold);

    transition:var(--transition);

}

.btn-secondary:hover{

    background:var(--gold);

    color:#111;

}

/*==================================================
  HEADER
==================================================*/

#header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:1000;

    transition:.4s;

}

.navbar{
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.logo{
    font-size:1.5rem;
    font-weight:700;
    color:#FFF;
    white-space:nowrap;
}

.logo span{

    color:var(--gold);

}

.menu{

    display:flex;

    gap:35px;

}

.menu a{

    color:#DDD;

    transition:.3s;

    position:relative;

}

.menu a:hover{

    color:var(--gold);

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;

}

.menu a:hover::after{

    width:100%;

}

.btn-nav{

    background:var(--gold);

    color:#111;

    padding:12px 24px;

    border-radius:40px;

    font-weight:600;

}

.menu-mobile{

    display:none;

    font-size:2rem;

    cursor:pointer;

}

/*==================================================
  HERO
==================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    background:

    radial-gradient(circle at right,#403015 0%,transparent 30%),

    linear-gradient(135deg,#070707,#121212);

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to right,

    rgba(7,7,7,.95),

    rgba(7,7,7,.65));

}

.hero-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:minmax(0,1fr) 620px;

    gap:70px;

    align-items:center;

}

.hero-tag{

    display:inline-block;

    color:var(--gold);

    letter-spacing:3px;

    margin-bottom:20px;

}

.hero h1{

    font-family:'Playfair Display',serif;

    font-size:4.2rem;

    line-height:1.1;

    margin-bottom:25px;

}

.hero h2{

    color:var(--gold);

    margin-bottom:20px;

}

.hero p{

    color:var(--text2);

    font-size:1.1rem;

    max-width:650px;

}

.hero-buttons{

    margin-top:40px;

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-metrics{

    display:flex;

    gap:40px;

    margin-top:60px;

}

.metric h3{

    color:var(--gold);

    font-size:2rem;

}

.metric span{

    color:#AAA;

    font-size:.9rem;

}

/*==================================================
  FOTO
==================================================*/

.hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    overflow:visible;
}
.photo-circle{
    width:620px;
    height:620px;
    min-width:620px;
    min-height:620px;
    border-radius:50%;
    overflow:hidden;
    border:6px solid rgba(200,161,77,.25);
    box-shadow:0 0 80px rgba(200,161,77,.20);
    flex-shrink:0;
}

.photo-circle img{
    width:100%;
    height:100%;
    display:block;
    object-fit:contain;
    object-position:center;
    background:#070707;
}

.experience-card{

    position:absolute;

    bottom:-20px;

    left:-30px;

    width:240px;

    background:rgba(24,24,24,.9);

    backdrop-filter:blur(12px);

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

    padding:25px;

    border-radius:18px;

    box-shadow:var(--shadow);

}

.experience-card span{

    display:block;

    color:var(--gold);

    font-size:2rem;

    font-weight:700;

    margin-bottom:10px;

}

/*==================================================
  CLIENTES
==================================================*/

.clients{

    padding:70px 0;

    background:#0d0d0d;

    border-top:1px solid #1f1f1f;

    border-bottom:1px solid #1f1f1f;

}

.clients-title{

    display:block;

    text-align:center;

    color:#888;

    letter-spacing:2px;

    font-size:.85rem;

    margin-bottom:45px;

}

.clients-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:25px;

}

.client-item{

    text-align:center;

    padding:20px;

    border:1px solid #262626;

    border-radius:12px;

    color:#bbb;

    transition:.35s;

}

.client-item:hover{

    color:var(--gold);

    border-color:var(--gold);

    transform:translateY(-6px);

}

/*==================================================
  ABOUT
==================================================*/

.about-grid{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:70px;

    align-items:start;

}

.about-content p{

    margin-bottom:22px;

    color:#c9c9c9;

    font-size:1.08rem;

}

.about-content strong{

    color:var(--gold);

}

.about-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

/*==================================================
  CARDS
==================================================*/

.highlight-card,

.service-card{

    background:rgba(24,24,24,.75);

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

    border-radius:20px;

    padding:35px;

    backdrop-filter:blur(10px);

    transition:.35s;

}

.highlight-card:hover,

.service-card:hover{

    transform:translateY(-10px);

    border-color:rgba(200,161,77,.4);

    box-shadow:0 20px 45px rgba(0,0,0,.45);

}

.highlight-card i,

.service-card i{

    font-size:2rem;

    color:var(--gold);

    margin-bottom:20px;

}

.highlight-card h3,

.service-card h3{

    margin-bottom:15px;

    font-size:1.3rem;

}

.highlight-card p,

.service-card p{

    color:#bcbcbc;

}

/*==================================================
  SERVICES
==================================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*==================================================
  SKILLS
==================================================*/

.skills-grid{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    justify-content:center;

}

.skill{

    padding:13px 24px;

    border-radius:40px;

    border:1px solid #303030;

    background:#151515;

    transition:.3s;

    color:#ddd;

}

.skill:hover{

    background:var(--gold);

    color:#111;

    transform:translateY(-5px);

}

/*==================================================
  CTA
==================================================*/

.cta-section{

    background:linear-gradient(135deg,#0b0b0b,#141414);

}

.cta-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:70px;

    border-radius:25px;

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

    background:rgba(24,24,24,.85);

    backdrop-filter:blur(15px);

}

.cta-box h2{

    font-family:'Playfair Display',serif;

    font-size:3rem;

    margin-bottom:20px;

}

.cta-box p{

    color:#bcbcbc;

    margin-bottom:35px;

    font-size:1.1rem;

}

