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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #003448;
  color: #ede9da;
  line-height: 1.6;
  min-height: 100vh;
}

/* Container Principal */
.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.content {
  width: 100%;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Logo */
.logo-container {
  display: flex;
  justify-content: center;
}

.logo-circle {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #003448;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #ede9da;
  overflow: hidden;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Títulos */
.title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ede9da;
}

.subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #ede9da;
  opacity: 0.9;
  margin-top: -1rem;
}

/* Botões */
.buttons-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.5rem;
  font-size: 1.125rem;
  background-color: transparent;
  border: 2px solid #ede9da;
  color: #ede9da;
  text-decoration: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  gap: 0.75rem;
}

.menu-button:hover {
  background-color: #ede9da;
  color: #003448;
}

.menu-button .icon {
  flex-shrink: 0;
}

.back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  font-size: 1rem;
  background-color: transparent;
  border: 1px solid #ede9da;
  color: #ede9da;
  text-decoration: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  gap: 0.5rem;
}

.back-button:hover {
  background-color: rgba(237, 233, 218, 0.1);
}

/* Ícones */
.icon {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-logo {
    width: 40px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Responsividade */
@media (max-width: 640px) {
  .logo-circle {
    width: 7rem;
    height: 7rem;
  }

  .title {
    font-size: 1.25rem;
  }

  .menu-button {
    font-size: 1rem;
    height: 3rem;
  }
}

@media (max-width: 400px) {
  .content {
    gap: 1.5rem;
  }

  .logo-circle {
    width: 6rem;
    height: 6rem;
  }

  .title {
    font-size: 1.125rem;
  }

  .menu-button {
    font-size: 0.875rem;
    height: 2.75rem;
  }
}
