/* =====================================================
   AUDITORES DA TASCA
   STYLE.CSS
===================================================== */

/* ---------- RESET ---------- */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#111;

    color:#ffffff;

    line-height:1.6;

    overflow-x:hidden;

}

/* ---------- CORES ---------- */

:root{

    --black:#0f0f0f;
    --black2:#181818;
    --black3:#222;

    --white:#ffffff;

    --gold:#d9b16f;

    --grey:#999;

    --border:#333;

}

/* ---------- CONTAINER ---------- */

.container{

    width:92%;

    max-width:1350px;

    margin:auto;

}

/* ---------- LINKS ---------- */

a{

    color:white;

    text-decoration:none;

}

/* ---------- HEADER ---------- */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:90px;

    z-index:999;

    background:rgba(0,0,0,.88);

    backdrop-filter:blur(6px);

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

    transition:.35s;

}

header.scrolled{

    background:#000;

    height:78px;

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

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:100%;

}

/* ---------- LOGO ---------- */

.brand img{

    height:58px;

    transition:.3s;

}

.brand img:hover{

    transform:scale(1.03);

}

/* ---------- MENU ---------- */

nav{

    display:flex;

    gap:35px;

}

nav a{

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:white;

    transition:.3s;

    position:relative;

}

nav a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;

}

nav a:hover{

    color:var(--gold);

}

nav a:hover::after{

    width:100%;

}

/* ---------- HERO ---------- */

.hero{

    position:relative;

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:

    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.80)),

    url("../img/hero.jpg");

    background-size:cover;

    background-position:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at center,

    rgba(255,255,255,.04),

    rgba(0,0,0,.45));

}

.hero-content{

    position:relative;

    z-index:5;

    width:90%;

    max-width:900px;

}

.hero-logo{

    width:230px;

    margin-bottom:35px;

    filter:drop-shadow(0 10px 25px rgba(0,0,0,.5));

}

.hero h1{

    font-size:68px;

    font-weight:900;

    letter-spacing:5px;

    margin-bottom:20px;

}

.hero h2{

    color:var(--gold);

    font-weight:300;

    font-size:28px;

    margin-bottom:25px;

}

.hero p{

    color:#ddd;

    font-size:20px;

    margin-bottom:45px;

}

/* ---------- BOTÕES ---------- */

.buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    display:inline-block;

    padding:18px 42px;

    border-radius:4px;

    background:var(--gold);

    color:black;

    font-weight:bold;

    letter-spacing:1px;

    text-transform:uppercase;

    transition:.3s;

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(0,0,0,.35);

}

.btn-outline{

    background:transparent;

    color:white;

    border:2px solid white;

}

.btn-outline:hover{

    background:white;

    color:black;

}

/* ---------- SECÇÕES ---------- */

.section{

    padding:110px 0;

}

.section h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

    letter-spacing:2px;

}

.dark{

    background:var(--black2);

}
/* =====================================================
   ESTATÍSTICAS
===================================================== */

.stats{

    background:#181818;

    padding:90px 0;

    border-top:1px solid #222;

    border-bottom:1px solid #222;

}

.stats .container{

    display:grid;

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

    gap:30px;

}

.stat{

    background:#202020;

    border:1px solid #333;

    padding:45px 20px;

    text-align:center;

    border-radius:8px;

    transition:.35s;

}

.stat:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.counter{

    display:block;

    font-size:54px;

    font-weight:bold;

    color:var(--gold);

    margin-bottom:15px;

}

.stat p{

    text-transform:uppercase;

    letter-spacing:2px;

    color:#ccc;

    font-size:14px;

}

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

.cards{

    display:grid;

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

    gap:30px;

}

.card{

    background:#1b1b1b;

    border:1px solid #333;

    border-radius:10px;

    padding:35px;

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

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

}

.card h3{

    color:var(--gold);

    margin-bottom:25px;

    font-size:22px;

}

.card ul{

    list-style:none;

}

.card li{

    padding:12px 0;

    border-bottom:1px solid #2d2d2d;

    color:#ddd;

}

.card li:last-child{

    border:none;

}

/* =====================================================
   NOTÍCIAS
===================================================== */

.news{

    display:grid;

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

    gap:30px;

}

.news div{

    background:#1d1d1d;

    padding:35px;

    border-left:5px solid var(--gold);

    border-radius:8px;

    transition:.35s;

}

.news div:hover{

    transform:translateY(-8px);

    background:#242424;

}

.news h3{

    margin-bottom:15px;

    color:var(--gold);

}

.news p{

    color:#ddd;

}

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

.cta{

    padding:110px 0;

    text-align:center;

    background:

    linear-gradient(rgba(0,0,0,.82),rgba(0,0,0,.82)),

    url("../img/wood.jpg");

    background-size:cover;

    background-position:center;

}

.cta h2{

    font-size:46px;

    margin-bottom:25px;

}

.cta p{

    max-width:750px;

    margin:auto;

    margin-bottom:45px;

    color:#ddd;

    font-size:20px;

}

/* =====================================================
   FOOTER
===================================================== */

footer{

    background:#080808;

    border-top:2px solid var(--gold);

    padding:60px 0;

    text-align:center;

}

footer img{

    width:240px;

    margin-bottom:25px;

}

footer p{

    color:#999;

    margin:8px 0;

}

/* =====================================================
   PEQUENAS ANIMAÇÕES
===================================================== */

.card,
.stat,
.news div{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.card.show,
.stat.show,
.news div.show{

    opacity:1;

    transform:translateY(0);

}
/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:1200px){

.cards{

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

}

.news{

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

}

.stats .container{

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

}

.hero h1{

font-size:54px;

}

}

@media (max-width:900px){

header{

height:80px;

}

header .container{

flex-direction:column;

justify-content:center;

padding:15px 0;

}

nav{

margin-top:15px;

gap:18px;

flex-wrap:wrap;

justify-content:center;

}

.hero{

padding:120px 20px 80px;

height:auto;

min-height:100vh;

}

.hero-logo{

width:180px;

}

.hero h1{

font-size:42px;

letter-spacing:2px;

}

.hero h2{

font-size:20px;

}

.hero p{

font-size:18px;

}

.section{

padding:70px 0;

}

.section h2{

font-size:32px;

}

}

@media (max-width:700px){

.cards{

grid-template-columns:1fr;

}

.news{

grid-template-columns:1fr;

}

.stats .container{

grid-template-columns:1fr;

}

.buttons{

flex-direction:column;

align-items:center;

}

.btn{

width:280px;

text-align:center;

}

footer img{

width:180px;

}

}

@media (max-width:500px){

.hero-logo{

width:150px;

}

.hero h1{

font-size:34px;

}

.hero h2{

font-size:18px;

}

.hero p{

font-size:16px;

}

nav a{

font-size:12px;

letter-spacing:1px;

}

}

/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#111;

}

::-webkit-scrollbar-thumb{

background:var(--gold);

border-radius:20px;

}

/* =====================================================
   SELEÇÃO DE TEXTO
===================================================== */

::selection{

background:var(--gold);

color:#000;

}

/* =====================================================
   BOTÃO VOLTAR AO TOPO
===================================================== */

#backToTop{

position:fixed;

right:25px;

bottom:25px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:var(--gold);

color:#000;

font-size:22px;

cursor:pointer;

display:none;

z-index:9999;

transition:.3s;

}

#backToTop:hover{

transform:translateY(-5px);

box-shadow:0 10px 25px rgba(0,0,0,.4);

}

#backToTop.show{

display:block;

}

/* =====================================================
   TABELAS
===================================================== */

table{

width:100%;

border-collapse:collapse;

margin-top:30px;

}

table th{

background:var(--gold);

color:#000;

padding:15px;

text-transform:uppercase;

}

table td{

padding:15px;

border-bottom:1px solid #333;

background:#1a1a1a;

}

table tr:hover td{

background:#222;

}

/* =====================================================
   BADGES
===================================================== */

.badge{

display:inline-block;

padding:6px 12px;

border-radius:20px;

background:var(--gold);

color:#000;

font-size:12px;

font-weight:bold;

text-transform:uppercase;

letter-spacing:1px;

}

/* =====================================================
   HALL OF FAME
===================================================== */

.member{

background:#1c1c1c;

border:1px solid #333;

border-radius:10px;

padding:30px;

text-align:center;

transition:.35s;

}

.member:hover{

border-color:var(--gold);

transform:translateY(-8px);

}

.member img{

width:130px;

height:130px;

border-radius:50%;

margin-bottom:20px;

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

}

.member h3{

margin-bottom:10px;

color:var(--gold);

}

/* =====================================================
   CERTIFICADOS
===================================================== */

.certificate{

background:#fff;

color:#000;

padding:60px;

border:10px solid #d9b16f;

max-width:900px;

margin:auto;

}

.certificate h1{

font-size:42px;

text-align:center;

margin-bottom:40px;

}

.certificate p{

font-size:18px;

margin:15px 0;

}

.certificate hr{

margin:30px 0;

}

/* =====================================================
   PRINT
===================================================== */

@media print{

header,
footer,
.btn,
#backToTop{

display:none;

}

body{

background:#fff;

}

.certificate{

border:none;

padding:20px;

}

}
form{

max-width:900px;
margin:auto;

}

label{

display:block;
margin-bottom:8px;
font-weight:bold;
color:var(--gold);

}

input,
select,
textarea{

width:100%;
padding:15px;
margin-bottom:20px;

background:#1a1a1a;

border:1px solid #444;

color:white;

border-radius:8px;

font-size:16px;

transition:.3s;

}

input:focus,
select:focus,
textarea:focus{

outline:none;

border-color:var(--gold);

box-shadow:0 0 10px rgba(214,181,107,.3);

}

button{

border:none;

cursor:pointer;

}

/* ===========================
   CONSENTIMENTO RGPD
   =========================== */

.consentimento-rgpd{

margin:25px 0;

padding:15px;

background:#1d1d1d;

border:1px solid #444;

border-left:4px solid var(--gold);

border-radius:8px;

font-size:14px;

line-height:1.6;

}

.consentimento-rgpd label{

display:flex;

align-items:flex-start;

gap:10px;

cursor:pointer;

}

.consentimento-rgpd input{

width:auto;

margin-top:4px;

}

.consentimento-rgpd a{

color:var(--gold);

font-weight:bold;

text-decoration:none;

}

.consentimento-rgpd a:hover{

text-decoration:underline;

}
