:root {
  --cor-barra: #F2E8D5;
  --cor-elo: #6B1F34;
  --cor-turismo: #8FBFA5;
  --cor-texto: #3A2E2A;
  --cor-branco: #FFFFFF;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--cor-texto);
  background: var(--cor-branco);
}

/* ===== BARRA SUPERIOR ===== */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--cor-barra);
  padding: 12px 32px;
  min-height: 80px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.topbar__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
}

.topbar__logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.topbar__brand {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Monoton', cursive;
  font-size: 2rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.brand-elo {
  color: var(--cor-elo);
}

.brand-turismo {
  color: var(--cor-turismo);
}

.topbar__actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.btn-cliente {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--cor-elo);
  color: var(--cor-branco);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-cliente__emoji {
  font-size: 1.1rem;
}

.btn-cliente:hover {
  background-color: var(--cor-turismo);
  color: var(--cor-elo);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(107, 31, 52, 0.25);
}

.btn-cliente:active {
  transform: translateY(0);
}

/* ===== BANNERS / SLIDE ===== */

.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 5;
  background-color: #EFE9DE;
}

.banner__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.banner__track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.banner__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--cor-elo);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.banner__arrow:hover {
  background-color: var(--cor-branco);
  transform: translateY(-50%) scale(1.08);
}

.banner__arrow--prev {
  left: 16px;
}

.banner__arrow--next {
  right: 16px;
}

.banner__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.banner__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px solid var(--cor-elo);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.25s ease;
}

.banner__dot--active {
  background-color: var(--cor-elo);
}

/* ===== ÁREA DE AUTENTICAÇÃO (login / registro) ===== */

.auth {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 16px 64px;
  background-color: #FBF8F2;
  min-height: calc(100vh - 104px);
}

.auth__card {
  width: 100%;
  max-width: 460px;
  background-color: var(--cor-branco);
  border: 1px solid #E8DFCC;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 12px 30px rgba(107, 31, 52, 0.06);
}

.auth__card--wide {
  max-width: 680px;
}

.auth__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cor-elo);
  margin-bottom: 6px;
}

.auth__subtitle {
  font-size: 0.9rem;
  color: #6B6058;
  margin-bottom: 28px;
}

.auth__field {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth__row {
  display: flex;
  gap: 16px;
}

.auth__row .auth__field {
  flex: 1;
}

.auth__field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cor-texto);
}

.auth__field input,
.auth__field select {
  border: 1px solid #DCD2BE;
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--cor-texto);
  background-color: #FDFCFA;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth__field input:focus,
.auth__field select:focus {
  outline: none;
  border-color: var(--cor-turismo);
  box-shadow: 0 0 0 3px rgba(143, 191, 165, 0.25);
}

.auth__field input[type="file"] {
  padding: 8px;
  background-color: #FDFCFA;
  cursor: pointer;
}

.auth__hint {
  font-size: 0.78rem;
  color: #8A7F73;
}

.auth__section-title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cor-turismo);
  margin: 26px 0 14px;
  padding-top: 10px;
  border-top: 1px solid #EFE7D6;
}

.auth__section-title:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.auth__submit {
  width: 100%;
  background-color: var(--cor-elo);
  color: var(--cor-branco);
  border: none;
  padding: 13px 20px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.auth__submit:hover {
  background-color: var(--cor-turismo);
  color: var(--cor-elo);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(107, 31, 52, 0.2);
}

.auth__footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.88rem;
  color: #6B6058;
}

.auth__footer a {
  color: var(--cor-elo);
  font-weight: 500;
  text-decoration: none;
}

.auth__footer a:hover {
  text-decoration: underline;
}

.auth__alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.auth__alert--erro {
  background-color: #FBE7E9;
  color: #9B2B36;
  border: 1px solid #F2C4C9;
}

.auth__alert--sucesso {
  background-color: #E9F3EC;
  color: #3E7A54;
  border: 1px solid #C4E3CE;
}

/* ===== RESPONSIVO ===== */

@media (max-width: 700px) {
  .topbar {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 16px;
  }

  .topbar__brand {
    font-size: 1.4rem;
    order: 3;
    flex: 1 0 100%;
    justify-content: center;
  }

  .topbar__logo img {
    height: 40px;
  }

  .btn-cliente span:last-child {
    display: none;
  }

  .btn-cliente {
    padding: 10px;
  }

  .banner {
    aspect-ratio: 4 / 5;
  }

  .auth__card {
    padding: 26px 20px;
  }

  .auth__row {
    flex-direction: column;
    gap: 0;
  }
}
