@charset "UTF-8";
body {
  background-color: #F3EBF3;
  font-family: "Inter", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
  margin: 0;
}

body.auth-page {
  background-color: #F3EBF3;
  font-family: "Inter", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 1rem;
}

.btn-signin {
  background: #542A6A;
  color: #ffffff;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.btn-signin:hover {
  background: #4c265f;
}

.summary-banner {
  background: #f4f0f6;
  border: 1px solid rgba(84, 42, 106, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin: 1rem;
}
.summary-banner .icon-box {
  background: #542A6A;
  color: #ffffff;
  padding: 8px;
  border-radius: 8px;
}

.hero-card {
  background: #ffffff;
  border-radius: 0.75rem;
  margin: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.hero-card .hero-image {
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-card .hero-image .badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #542A6A;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
}
.hero-card .hero-content {
  padding: 1rem;
}
.hero-card .hero-content .price {
  color: #16a34a;
  font-weight: 700;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 1rem;
}
.quick-grid .action-button {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 0.75rem;
  padding: 1.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
}
.quick-grid .action-button:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  background: #f8fafc;
}
.quick-grid .action-button .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4px;
}
.quick-grid .action-button .icon-circle.blue {
  background: #dbeafe;
  color: #2563eb;
}
.quick-grid .action-button .icon-circle.purple {
  background: #f3e8ff;
  color: #9333ea;
}
.quick-grid .action-button .icon-circle.green {
  background: #dcfce7;
  color: #16a34a;
}
.quick-grid .action-button .icon-circle.orange {
  background: #ffedd5;
  color: #ea580c;
}
.quick-grid .action-button span {
  font-weight: 600;
  font-size: 14px;
  color: #1a1f36;
}

.auth-card {
  background: #ffffff;
  width: 100%;
  max-width: 440px;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.auth-card .auth-content {
  padding: 3rem 2.5rem;
}

.logo-container {
  text-align: center;
  margin-bottom: 2.5rem;
}
.logo-container .logo-icon {
  background: #f4f0f6;
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  margin: 0 auto 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.logo-container .logo-icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.logo-container h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 0.5rem;
}
.logo-container p {
  color: #697386;
  font-size: 0.95rem;
}

.input-group {
  margin-bottom: 1.25rem;
}
.input-group .label-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.5rem;
}
.input-group label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1a1f36;
}
.input-group .link-forgot {
  font-size: 0.875rem;
  color: #542A6A;
  text-decoration: none;
  font-weight: 600;
}
.input-group .link-forgot:hover {
  text-decoration: underline;
}
.input-group .input-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.input-group .input-wrapper .icon-left {
  position: absolute;
  left: 1rem;
  color: #697386;
  font-size: 20px;
}
.input-group .input-wrapper input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.input-group .input-wrapper input:focus {
  outline: none;
  border-color: #542A6A;
  -webkit-box-shadow: 0 0 0 4px rgba(84, 42, 106, 0.1);
          box-shadow: 0 0 0 4px rgba(84, 42, 106, 0.1);
}
.input-group .input-wrapper .btn-toggle-pwd {
  position: absolute;
  right: 0.75rem;
  background: none;
  border: none;
  color: #697386;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.input-group .input-wrapper .btn-toggle-pwd:hover {
  color: #1a1f36;
}

.remember-me {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #697386;
  cursor: pointer;
}
.remember-me input[type=checkbox] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #542A6A;
}

.btn-primary {
  background: #542A6A;
  color: #ffffff;
  width: 100%;
  padding: 0.875rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.btn-primary:hover {
  background: #4c265f;
}

.divider {
  position: relative;
  text-align: center;
  margin: 2.5rem 0 1.5rem;
}
.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #f0f0f0;
  z-index: 1;
}
.divider span {
  position: relative;
  background: #ffffff;
  padding: 0 1rem;
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #e5e7eb;
  color: #1a1f36;
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.btn-secondary:hover {
  background: #f9fafb;
}

.auth-footer-visual {
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(243, 235, 243)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(243, 235, 243) 100%);
  background-image: url("/img/bubbles-bg.png");
  background-size: cover;
  background-position: center bottom;
}

/* Teste de Renderização - Pode apagar após confirmar */
.scss-status-check {
  content: "WizardCS Styles Loaded";
  display: none;
}/*# sourceMappingURL=main.css.map */