/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #111;
}

/* VARIÁVEIS */
:root {
  --logo-width: 300px;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: var(--logo-width);
  height: auto;
  margin-top: 14px;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.site-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 100px;
  width: 300px;
}
.icon-btn {
  font-size: 1.2rem;
  text-decoration: none;
}


/* ===== Section de Cadastro – Tema Preto & Branco ===== */

.auth {
  padding: 3rem 0;
}

.auth-wrap {
  background: #111;                /* fundo preto grande */
  border-radius: 28px;
  padding: 3rem 1.25rem;
  display: flex;
  justify-content: center;
}

.auth-card {
  background: #fff;                /* cartão branco */
  color: #111;
  width: 100%;
  max-width: 520px;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.auth-card h1 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: .25rem;
  color: #111;
}

.auth-card .subtitle {
  color: #666;
  margin-bottom: 1.25rem;
}

.auth-form .input-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1rem;
}

.auth-form label {
  font-weight: 600;
  color: #222;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  padding: .75rem 1rem;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  outline: none;
  background: #fff;
  color: #111;
  font-size: 1rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.auth-form input:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,.12);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* checkbox + links */
.check {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .95rem;
  color: #555;
  margin: .25rem 0 1rem;
}

.check a,
.auth-links a {
  color: #111;
  text-decoration: none;
}

.check a:hover,
.auth-links a:hover { opacity: .7; }

.auth-links {
  text-align: center;
  margin-top: 1rem;
  color: #777;
}

/* ===== Botão: hover inflar + sombra leve ===== */
.btn-primary {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: .95rem 1rem;
  font-weight: 700;
  background: #000;                /* preto */
  color: #fff;                     /* texto branco */
  cursor: pointer;
  transform: translateZ(0);
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn-primary:hover {
  transform: scale(1.02) translateY(-1px);   /* “inflar” */
  box-shadow: 0 14px 28px rgba(0,0,0,.14);   /* sombra mais marcada */
  filter: brightness(1.02);
}

.btn-primary:active {
  transform: scale(0.996);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

.btn-primary:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0,0,0,.18);
}


/* FOOTER NEWSLETTER */
.footer-newsletter {
  background: #111;
  color: #fff;
  padding: 2rem 0;
  margin-top: 4rem;
  border-radius: 8px;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-newsletter h3 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 50px;
  width: 250px;
}

.newsletter-form button {
  padding: 0.6rem 1.5rem;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
}

/* FOOTER MAIN */
.footer-main {
  background: #f5f5f5;
  padding: 4rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 140px;
  min-width: 140px;
}

.footer-col.about {
  flex: 2 1 280px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #555;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid #ddd;
  background: #f5f5f5;
  padding: 1rem 0;
}

.bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #777;
}

.payments img {
  height: 60px;
  margin-left: 0.75rem;
}