/* ===========================================================
   VARIÁVEIS GERAIS
   =========================================================== */
:root {
  --gold: #d4af37;
  --dark: #0d0d0d;
  --light-dark: #1a1a1a;
  --gray: #cccccc;
  --light-gray: #f5f5f5;
}

/* ===========================================================
   BASE
   =========================================================== */
html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden; /* remove barra lateral */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--dark);
  color: var(--light-gray);
}

a {
  text-decoration: none;
}

/* ===========================================================
   HEADER + MENU DESKTOP
   =========================================================== */
header {
  width: 100%;
  background: var(--dark);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
}

header img.logo {
  height: 55px;
}

.desktop-menu {
  display: flex;
  gap: 28px;
}

.desktop-menu a {
  color: var(--gold);
  font-weight: bold;
  transition: .3s;
}

.desktop-menu a:hover {
  color: white;
}

/* ===========================================================
   MENU MOBILE (HAMBURGUER)
   =========================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--gold);
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* MENU MOBILE */
#mobileMenu {
  display: none;
  flex-direction: column;
  background: var(--light-dark);
  position: absolute;
  top: 80px;
  right: 0;
  width: 100%;
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid var(--gold);
  z-index: 9999;
  box-sizing: border-box;
}

#mobileMenu a {
  font-size: 20px;
  color: var(--gold);
  padding: 15px 0;
  display: block;
}

#mobileMenu.active {
  display: flex;
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
}

.hero h1 {
  font-size: 3em;
  color: var(--gold);
}

.hero p {
  font-size: 1.2em;
  margin: 20px 0;
}

.btn {
  background: var(--gold);
  color: black;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: .3s;
}

.btn:hover {
  background: white;
}

/* ===========================================================
   SEÇÕES / CARDS
   =========================================================== */
.section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.section h2 {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: bold;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.card {
    background: #1a1a1a;
    border: 2px solid var(--gold);
    border-radius: 14px;
    padding: 25px;
    width: 280px;
    color: #fff;
    text-align: center;
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.6);
}

.card h3 {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: bold;
}

/* ===========================================================
   LOGIN / CADASTRO / RECUPERAR
   =========================================================== */

.titulo-pagina {
    color: var(--gold);
    text-align: center;
    margin-top: 25px;
    font-size: 32px;
    font-weight: bold;
}

.form-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.form-card {
    width: 420px;
    background: #1a1a1a;
    padding: 35px;
    border-radius: 18px;
    border: 2px solid var(--gold);
    box-shadow: 0px 4px 12px rgba(0,0,0,0.5);
    text-align: center;
    margin-bottom: 40px;
}

.form-input {
    width: 90%;
    padding: 14px;
    margin: 10px auto 20px;
    border-radius: 10px;
    border: 2px solid var(--gold);
    background: #ffffff;
    color: #000000;
    font-size: 15px;
    display: block;
}

.form-input::placeholder {
    color: var(--gold);
}

.form-button {
    width: 90%;
    padding: 14px;
    background: var(--gold);
    color: black;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 5px;
    font-size: 16px;
}

.button-secondary {
    background: #6b7280 !important;
}

.button-secondary:hover {
    background: #4b5563 !important;
}

/* ===========================================================
   FOOTER
   =========================================================== */
footer {
  background: #111;
  text-align: center;
  padding: 20px;
  color: var(--gray);
}

/* ===========================================================
   RESPONSIVIDADE
   =========================================================== */

/* MOBILE */
@media (max-width: 900px) {

    header {
        padding: 18px 20px;
    }

    .desktop-menu {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    #mobileMenu {
        display: none;
    }

    #mobileMenu.active {
        display: flex !important;
    }

    .card {
        width: 90%;
        max-width: 350px;
    }

    .form-card {
        width: 100%;
        max-width: 380px;
        padding: 25px;
    }
}

/* DESKTOP */
@media (min-width: 901px) {

    .desktop-menu {
        display: flex !important;
    }

    #mobileMenu {
        display: none !important;
    }

    .hamburger {
        display: none !important;
    }
}

input, button {
    font-size: 16px !important;
}

button, input {
    -webkit-tap-highlight-color: transparent;
}

/* ===========================================================
   ÍCONES SOCIAIS - RODA PÉ CONTATO
   =========================================================== */

.social-icons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
	margin-bottom: 20px;  /* Aumente ou diminua como preferir */
}

.social-icons .icon {
    width: 35px;
    height: 35px;
    filter: invert(74%) sepia(61%) saturate(548%) hue-rotate(6deg) brightness(93%) contrast(89%); /* transforma branco em dourado */
}
