*{
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

:root{
  --wine: #5b1f2a;
  --wine-dark: #311116;
  --gold: #c8a46a;
  --cream: #f5efe6;
  --olive: #6d7458;
  --text: #222;
  --white: #fff;
  --muted: #6b7280;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 14px 40px rgba(0,0,0,0.15);
  --radius: 18px;
  --max: 1200px;
}

.topbar{
  font-family: "Segoe UI", Arial, sans-serif;
  height: 70px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  color: rgba(255,255,255,0.75);
  padding: 0 40px;
}

.nav{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nav a{
  position: relative;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;

  color: rgba(255,255,255,0.75);

  transition: all .3s ease;
}

.nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;

  background: linear-gradient(90deg, var(--gold), #e6c88b);
  border-radius: 2px;

  transition: width .3s ease;
}

.nav a:hover{
   color: var(--gold);
  text-shadow: 0 0 8px rgba(200,164,106,0.5);
}

.nav a:hover::after{
  width: 100%;
}
.nav a.active{
  color: var(--gold);
}

.nav a.active::after{
  width: 100%;
}

.box-logo{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.box-logo strong{
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  background: linear-gradient(135deg, var(--gold), #e6c88b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.box-logo span{
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero{
  height: 100vh;
  background: url("../images/fundo_dogo.png") center/cover no-repeat;
  position: relative;
  color: white;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.6) 40%,
    rgba(0,0,0,0.2) 100%
  );
}

.hero-text{
  position: relative;
  color: white;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-text h1{
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1;
}

.hero-text p{
  margin-top: 10px;
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 1.8px;
}

.eyebrow{
display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(200, 164, 106, 0.16);
  border: 1px solid rgba(200, 164, 106, 0.45);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);

}
.hero-botoes{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:14px;
  margin-top: 28px;
}
.btn{
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 170px;
  padding: 16px 32px;
  border-radius: 999px;

  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  cursor: pointer;
  border: 1px solid rgba(200, 164, 106, 0.5);

  color: var(--gold);
  background: transparent; /* 🔥 transparente */

  backdrop-filter: blur(8px);

  transition: all .3s ease;
}

/* ✨ SHINE EFFECT */
.btn::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );

  transform: skewX(-25deg);
}

/* animação ao passar o rato */
.btn:hover::before{
  left: 140%;
  transition: 0.6s;
}

/* 🔥 HOVER = deixa de ser transparente */
.btn:hover{
  background: linear-gradient(135deg, var(--gold), #e6c88b);
  color: #2a0f14;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.btn-primary{
  background: rgba(200, 164, 106, 0.18);
  color: var(--gold);
  border: 1px solid rgba(200, 164, 106, 0.45);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.btn-primary:hover{
  background: rgba(200, 164, 106, 0.28);
  color: #fff;
  border-color: rgba(200, 164, 106, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

body{
  font-family: Arial, sans-serif;
  background: #111;
}

/* PÁGINAS AUTH */
.auth-page{
  min-height: 100vh;
  position: relative;
  background: url("../images/fundo_dogo.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 40px;
}

.auth-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.58) 45%,
    rgba(0,0,0,0.30) 100%
  );
}

.auth-wrapper{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: center;
}

.auth-card{
  width: 100%;
  max-width: 760px;
  padding: 36px 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200, 164, 106, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  color: var(--white);
}

.auth-card-small{
  max-width: 520px;
}

.auth-card h1{
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1;
  margin-bottom: 12px;
  color: var(--white);
}

.auth-subtitle{
  color: rgba(255,255,255,0.78);
  margin-bottom: 26px;
  font-size: 1rem;
}

.auth-form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.input-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label{
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
}

.input-group input{
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  outline: none;
  font-size: 1rem;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.input-group input::placeholder{
  color: rgba(255,255,255,0.48);
}

.input-group input:focus{
  border-color: rgba(200, 164, 106, 0.7);
  box-shadow: 0 0 0 4px rgba(200, 164, 106, 0.12);
  background: rgba(255,255,255,0.10);
}

.auth-form .btn{
  align-self: flex-start;
  margin-top: 8px;
}

.auth-link{
  margin-top: 22px;
  color: rgba(255,255,255,0.78);
}

.auth-link a{
  color: var(--gold);
  font-weight: 700;
}

.auth-link a:hover{
  color: #e6c88b;
}

/* RESPONSIVO */
@media (max-width: 768px){
  .form-grid{
    grid-template-columns: 1fr;
  }

  .auth-card{
    padding: 28px 20px;
  }

  .auth-form .btn{
    width: 100%;
     align-self: center;
     height: 20px;
  }

  .topbar{
    padding: 0 14px;
  }

  .nav{
    gap: 8px;
  }

  .nav a{
    font-size: 0.85rem;
  }
}

.input-group select{
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border-radius: 16px;

  border: 1px solid rgba(200,164,106,0.5);
  background: rgba(0,0,0,0.35);

  color: var(--gold);
  font-weight: 700;

  backdrop-filter: blur(10px);
  outline: none;
}

.input-group select:focus{
  border-color: rgba(200, 164, 106, 0.7);
  box-shadow: 0 0 0 4px rgba(200, 164, 106, 0.12);
  background: rgba(255,255,255,0.10);
}

.dashboard-bloco{
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200, 164, 106, 0.22);
  color: var(--white);
}

.dashboard-bloco h2{
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: var(--gold);
}

.dashboard-bloco p{
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin-bottom: 8px;
}
    
