/* ============================= */
/* FONTES */
/* ============================= */

@font-face {
    font-family: 'Glacial Indifference';
    src: url('./fonts/GlacialIndifference-Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('./fonts/GlacialIndifference-Bold.otf') format('opentype');
    font-weight: 700;
}


/* ============================= */
/* VARIÁVEIS */
/* ============================= */

:root {
    --gold: #AC8400;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}


/* ============================= */
/* RESET */
/* ============================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Glacial Indifference',sans-serif;
    color:var(--gray);
    background:var(--white);
    line-height:1.6;
}


/* ============================= */
/* CONTAINER */
/* ============================= */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.narrow{
    max-width:800px;
}


/* ============================= */
/* HEADER */
/* ============================= */

.header-wrapper{
    position:fixed;
    top:20px;
    left:0;
    width:100%;
    display:flex;
    justify-content:center;
    z-index:1000;
}

.header-box{
    width:92%;
    max-width:1250px;
    background:rgba(172,132,0,0.85);
    padding:18px 30px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}


/* ============================= */
/* LOGO */
/* ============================= */

.logo img{
    height:25px;
    width:auto;
}


/* ============================= */
/* MENU */
/* ============================= */

.menu{
    display:flex;
    gap:35px;
}

.menu a{
    text-decoration:none;
    color:#fff;
    font-size:16px;
    transition:.3s;
}

.menu a:hover{
    opacity:.8;
}
.menu-toggle{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}

/* ============================= */
/* BOTÃO CONTATO */
/* ============================= */

.btn-contato{
    border:1px solid #fff;
    color:#fff;
    padding:10px 22px;
    border-radius:10px;
    text-decoration:none;
    transition:.3s;
}

.btn-contato:hover{
    background:var(--gold);
    border-color:var(--gold);
}


/* ============================= */
/* HERO */
/* ============================= */

.hero{
    position:relative;
    min-height:120vh;
    display:flex;
    align-items:flex-start;
    justify-content:flex-end;
    padding:0 5%;
    background:url("assets/hero.png") center top / cover no-repeat;
    color:white;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0);
}

.hero-content{
    position:absolute;
    bottom:155px;
    right:20%;
    text-align:right;
}

.btn-primary{
    background:var(--gold);
    color:white;
    padding:12px 25px;
    text-decoration:none;
    font-weight:bold;
}

.btn-primary:hover{
    opacity:.85;
}


/* ============================= */
/* SEÇÕES */
/* ============================= */

.section{
    padding:100px 0;
}

.light-section{
    background:var(--white);
}

.gray-section{
    background:var(--light-gray);
}

h2{
    font-size:36px;
    color:var(--gray);
}

h3{
    color:var(--gray);
}
#atuacao{
    background:#efeeee;
}


/* ============================= */
/* LINHA */
/* ============================= */

.line{
    width:60px;
    height:3px;
    background:var(--gold);
    margin:20px 0;
}
.fluxos-texto .line{
    margin:20px 0;
}


/* ============================= */
/* GESTÃO BACKOFFICE */
/* ============================= */

.atuacao-topo{
    text-align:left;
    max-width:800px;
}

.titulo-secao{
    font-size:36px;
    font-weight:400;
}

.titulo-secao span{
    display:block;
    font-weight:700;
    color:var(--gold);
}

.atuacao-topo p{
    margin-top:10px;
}


/* ============================= */
/* NOSSA ATUAÇÃO */
/* ============================= */

.nossa-atuacao{
    background:var(--gold);
    padding:100px 0;
    text-align:center;
    color:white;
}

.titulo-atuacao{
    font-size:32px;
    font-weight:400;
    color:white;
}

.nossa-atuacao .line{
    background:white;
}


/* ============================= */
/* CARDS ATUAÇÃO */
/* ============================= */

.atuacao-cards-modern{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

.card-modern{
    background:#fff;
    padding:40px 30px;
    border-radius:16px;
    box-shadow:0 12px 25px rgba(0,0,0,0.06);
    transition:.3s;
}

.card-modern:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.card-modern h4{
    font-size:16px;
    text-transform:uppercase;
    color:#444;
}

.card-descricao{
    margin-top:15px;
    font-size:14px;
    color:#fff;
    line-height:1.6;
    max-width:250px;
    margin-left:auto;
    margin-right:auto;
}


/* ============================= */
/* FLUXOS */
/* ============================= */

.fluxos-texto{
    max-width:800px;
    margin:0;
    text-align:left;
}

.fluxos-texto span{
    color:var(--gold);
    display:block;
    font-weight:bold;
}

.fluxos-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.fluxo-card{
    background:white;
    padding:30px 25px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:.3s;
    text-align:center;
}

.fluxo-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
    border:2px solid var(--gold);
}

.fluxo-card .icone img{
    width:50px;
    margin-bottom:15px;
}

/* ============================= */
/* CONTATO */
/* ============================= */

.contato-section{
    display:flex;
    min-height:500px;
}

/* container */

.contato-container{
    display:flex;
    width:100%;
}

/* lado esquerdo texto */

.contato-texto{
    width:50%;
    background:#ffffff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding-left:10%;
    padding-right:5%;
}

.contato-texto h2{
    font-size:42px;
    letter-spacing:8px;
    font-weight:400;
    margin-bottom:30px;
}

.contato-texto p{
    font-size:16px;
    margin-bottom:15px;
}

/* lado direito imagem */

.contato-imagem{
    width:40%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contato-imagem img{
    width:100%;
    height:auto;
    object-fit:cover;
}


/* RESPONSIVO */

@media(max-width:900px){

.contato-container{
    flex-direction:column;
}

.contato-texto{
    width:100%;
    padding:60px 10%;
}

.contato-imagem{
    width:100%;
}

.contato-imagem img{
    width:100%;
    height:auto;
}

}
/* ============================= */
/* FOOTER */
/* ============================= */

footer{
    background:var(--gray);
    color:white;
    text-align:center;
    padding:20px 0;
}


/* ============================= */
/* RESPONSIVO */
/* ============================= */

@media(max-width:1000px){

.atuacao-cards-modern{
grid-template-columns:repeat(2,1fr);
}

.fluxos-cards{
grid-template-columns:1fr;
}

.contato-grid{
grid-template-columns:1fr;
}

.contato-colunas{
grid-template-columns:1fr;
}

}

@media(max-width:600px){

.atuacao-cards-modern{
grid-template-columns:1fr;
}

}


/* ============================= */
/* TECNOLOGIA */
/* ============================= */

.tecnologia{
    position:relative;
    background:url("assets/tecnologia-bg.png") center / cover no-repeat;
    padding:140px 0;
}

.tecnologia::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0);
}

.tecnologia .container{
    position:relative;
    z-index:2;
}


/* ============================= */
/* GRID */
/* ============================= */

.tecnologia-cards{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-top:340px;
}


/* ============================= */
/* CARD TECNOLOGIA */
/* ============================= */

.tech-card{
    background:#fff;
    padding:22px 20px;
    border-radius:14px;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
    transition:.3s;
    text-align:left;
    width:250px;
}

.tech-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

.tech-card h4{
    font-size:15px;
    text-transform:uppercase;
    color:#444;
}

.tech-card .line{
    margin:12px 0 15px 0;
}

.tech-card ul{
    padding-left:18px;
}

.tech-card li{
    margin-bottom:8px;
    font-size:13px;
    color:var(--gray);
}
/* ============================= */
/* MENU MOBILE */
/* ============================= */

@media(max-width:900px){

.menu{
position:absolute;
top:80px;
right:20px;
background:rgba(172,132,0,0.95);
flex-direction:column;
padding:25px;
border-radius:10px;
gap:20px;
display:none;
}

.menu.menu-open{
display:flex;
}

.menu-toggle{
display:block;
}

.header-actions{
display:none;
}

}
/* ============================= */
/* IMAGENS TAMANHO ORIGINAL MOBILE */
/* ============================= */

@media(max-width:768px){

.fluxo-card img,
.contato-imagem img{
    max-width:none;
    width:auto;
}

}
@media(max-width:768px){

.tecnologia{
    background-position:center;
    background-size:cover;
    padding-top:220px;
}

}