/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: #f0f0f0;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tipografia de luxo */
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  line-height: 1.2;
}

/* Cabeçalho */
.header {
  padding: 20px 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.8rem;
  font-family: "Cormorant Garamond", serif;
}
.logo em {
  color: #d4af37; /* Dourado clássico */
  font-style: normal;
}

.nav-public {
  display: flex;
  align-items: center;
  gap: 24px;
  float: right;
}
.nav-public a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.nav-public a:hover {
  color: #d4af37;
}

.btn-associacao {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 400;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url('../img/hero-bg.jpg'); /* Imagem de fundo: close de um relógio vintage ou oficina */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

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

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #e0e0e0;
}

.cta-button {
  display: inline-block;
  background: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
  padding: 14px 40px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Rodapé */
.footer {
  background: #000;
  padding: 30px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}
.footer a {
  color: #aaa;
  text-decoration: none;
}
.footer a:hover {
  color: #d4af37;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .nav-public {
    display: none; /* ou transformar em menu hamburguer se quiser */
  }
}

/* Página de associação */
.page-associacao {
  padding: 80px 0 60px;
  background: #080808;
}

.form-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(15, 15, 15, 0.7);
  padding: 40px;
  border: 1px solid #222;
  border-radius: 4px;
}

.form-card h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #fff;
}

.subtitle {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.alert {
  padding: 12px;
  margin-bottom: 24px;
  border-radius: 3px;
}
.sucesso {
  background: rgba(50, 100, 50, 0.2);
  border: 1px solid #3c3;
  color: #8f8;
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 12px;
  background: #000;
  border: 1px solid #333;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  border-radius: 2px;
}
.form-group label {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #777;
  pointer-events: none;
  transition: 0.2s;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -20px;
  left: 0;
  font-size: 0.85rem;
  color: #d4af37;
}

.form-row {
  display: flex;
  gap: 20px;
}
.half {
  flex: 1;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-submit:hover {
  background: rgba(212, 175, 55, 0.1);
}