.store-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 10%, rgba(7, 86, 201, 0.10), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(255, 106, 0, 0.10), transparent 24%),
    #f6f8fc;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.store-header-content {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.store-logo {
  display: flex;
  align-items: center;
}

.store-logo img {
  width: 190px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.store-back-link {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.store-back-link:hover {
  color: var(--primary);
}

.store-intro {
  padding: 68px 0 34px;
}

.store-intro-content {
  max-width: 820px;
  text-align: center;
}

.store-eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-intro h1 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.store-description {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.store-form-section {
  padding: 22px 0 90px;
}

.store-form-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 38px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(23, 32, 51, 0.08);
}

.store-form-card fieldset {
  min-width: 0;
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.store-form-card legend {
  width: 100%;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 900;
}

.store-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.store-field {
  min-width: 0;
}

.store-field-full {
  grid-column: 1 / -1;
}

.store-field label {
  display: block;
  margin-bottom: 7px;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 800;
}

.store-field label span {
  color: #d92d20;
}

.store-field input,
.store-field select,
.store-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  background: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 11px;
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.store-field textarea {
  min-height: 100px;
  resize: vertical;
}

.store-field input:focus,
.store-field select:focus,
.store-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(7, 86, 201, 0.11);
}

.store-field input[aria-invalid="true"],
.store-field select[aria-invalid="true"],
.store-field textarea[aria-invalid="true"] {
  border-color: #d92d20;
}

.store-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px;
  margin: 4px 0 22px;
  color: #475467;
  font-size: 0.9rem;
}

.store-consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--primary);
}

.store-submit {
  width: 100%;
  min-height: 54px;
  padding: 14px 22px;
  background: var(--accent);
  border: 0;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.store-submit:hover:not(:disabled) {
  background: #d95700;
  transform: translateY(-1px);
}

.store-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.store-message {
  margin-bottom: 24px;
  padding: 14px 16px;
  background: #fff0f0;
  border: 1px solid #f3b5b5;
  border-radius: 10px;
  color: #a51616;
  font-weight: 700;
}

.store-message.success {
  background: #edf9f0;
  border-color: #a6deb3;
  color: #176c2f;
}

.store-success {
  padding: 34px 10px;
  text-align: center;
}

.store-success h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.store-success p {
  color: var(--muted);
}

.store-success strong {
  display: inline-block;
  margin-left: 4px;
  color: var(--primary);
  font-size: 1.15rem;
}

.store-success a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 16px;
  padding: 12px 18px;
  background: var(--primary);
  border-radius: 11px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.store-page :focus-visible {
  outline: 3px solid rgba(255, 106, 0, 0.5);
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .store-header-content {
    min-height: 68px;
  }

  .store-logo img {
    width: 150px;
    height: 46px;
  }

  .store-intro {
    padding: 46px 0 24px;
  }

  .store-form-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .store-form-grid {
    grid-template-columns: 1fr;
  }

  .store-field-full {
    grid-column: auto;
  }
}

/* Ajuste final do logótipo da candidatura */
.store-logo {
  width: 230px;
  overflow: visible;
}

.store-logo img {
  width: 230px;
  max-width: 230px;
  height: 64px;
}

@media (max-width: 700px) {
  .store-logo {
    width: 170px;
  }

  .store-logo img {
    width: 170px;
    max-width: 170px;
    height: 50px;
  }
}
