:root {
  --green: #c4d70f;
  --green-dark: #7c8d00;
  --orange: #fc5d35;
  --navy: #141414;
  --ink: #20232a;
  --muted: #676b74;
  --line: #e4e7ec;
  --soft: #f7f8f4;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 24, 40, .22);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

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

.topline {
  background: var(--navy);
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 700;
}

.topline-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.topline-inner span::before {
  content: "- ";
  color: var(--green);
}

.topline-inner span::after {
  content: " -";
  color: var(--green);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  height: 42px;
  width: auto;
}

.brand span {
  padding-left: 10px;
  border-left: 2px solid var(--green);
  color: var(--navy);
}

.desktop-nav,
.mobile-nav {
  align-items: center;
  gap: 22px;
  font-size: 15px;
  color: #344054;
}

.desktop-nav {
  display: flex;
}

.mobile-nav {
  display: none;
  padding: 0 20px 20px;
  flex-direction: column;
  align-items: stretch;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: #111400;
  box-shadow: 0 10px 22px rgba(197, 217, 0, .23);
}

.btn-primary:hover {
  background: #d8ed16;
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-outline {
  border-color: #bdc6d1;
  color: var(--navy);
  background: var(--white);
}

.btn-link {
  background: transparent;
  color: var(--navy);
}

.btn-large {
  min-height: 50px;
  padding-inline: 24px;
}

.btn-with-icon svg {
  flex: 0 0 auto;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 34px;
  background:
    radial-gradient(circle at 80% 10%, rgba(196, 215, 15, .18), transparent 34%),
    linear-gradient(110deg, #ffffff 0%, #ffffff 56%, rgba(196, 215, 15, .10) 56%, rgba(20, 20, 20, .06) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--navy);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  max-width: 740px;
  font-weight: 800;
}

h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
}

.lead {
  margin: 24px 0 0;
  max-width: 560px;
  color: #344054;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-media {
  position: relative;
  min-height: 500px;
}

.hero-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px 8px 8px 72px;
  box-shadow: var(--shadow);
}

.status-panel {
  position: absolute;
  left: -24px;
  bottom: 28px;
  width: min(320px, calc(100% - 24px));
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 4px 10px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 18px 44px rgba(16, 24, 40, .20);
}

.status-panel span:last-child {
  grid-column: 2;
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(197, 217, 0, .18);
}

.search-band {
  margin-top: -26px;
  position: relative;
  z-index: 3;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px 132px;
  gap: 18px;
  align-items: end;
  padding: 28px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(16, 24, 40, .18);
}

label {
  display: grid;
  gap: 8px;
  color: #475467;
  font-weight: 600;
}

.search-form label {
  color: rgba(255, 255, 255, .88);
}

.quick-section {
  padding: 46px 0 12px;
}

.quick-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.quick-head h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-row a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(16, 24, 40, .06);
}

.category-row a:hover {
  border-color: var(--green);
  background: rgba(196, 215, 15, .12);
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfd6df;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(197, 217, 0, .26);
  border-color: var(--green-dark);
}

input.is-invalid,
input.is-invalid:focus {
  border-color: #dc2626;
  background: #fff7f7;
  outline-color: rgba(220, 38, 38, .18);
}

.field-validation-message {
  color: #b42318;
  font-size: 13px;
  font-weight: 800;
}

.floating-form-notice {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  width: min(420px, calc(100vw - 36px));
  overflow: hidden;
  border: 1px solid rgba(124, 141, 0, .34);
  border-radius: 8px;
  padding: 14px 14px 18px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.floating-form-notice button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 24, 40, .08);
  cursor: pointer;
  font-size: 18px;
}

.floating-form-notice i {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: var(--green);
  animation: notice-countdown 5s linear forwards;
}

@keyframes notice-countdown {
  from { width: 100%; }
  to { width: 0; }
}

textarea {
  resize: vertical;
}

.section {
  padding: 86px 0;
}

.muted {
  background: var(--soft);
}

.section-title {
  max-width: 760px;
  margin-bottom: 32px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .07);
}

.service-card img {
  width: 72px;
  height: 80px;
  object-fit: contain;
}

.service-card h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.service-card p {
  color: var(--muted);
  line-height: 1.55;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(197, 217, 0, .18);
  color: #596900;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

.event-meta {
  color: var(--orange);
  font-weight: 800;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.highlight-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(20, 20, 20, .28), rgba(20, 20, 20, .92)),
    url("../img/hero-eventos.png") center / cover;
  box-shadow: 0 16px 36px rgba(16, 24, 40, .14);
}

.highlight-card:nth-child(2) {
  background-position: 62% center;
}

.highlight-card:nth-child(3) {
  background-position: 28% center;
}

.highlight-card span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green);
  color: #111400;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.highlight-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
}

.highlight-card p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  line-height: 1.55;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
}

.benefit-card span {
  color: var(--green-dark);
  font-weight: 900;
  font-size: 13px;
}

.benefit-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.18;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.organizer {
  background: var(--navy);
  color: var(--white);
}

.organizer h2,
.organizer .eyebrow {
  color: var(--white);
}

.organizer p:not(.eyebrow) {
  max-width: 640px;
  color: #d0d5dd;
  line-height: 1.7;
}

.organizer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-footer {
  padding: 28px 0;
  background: #0b1220;
  color: #d0d5dd;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, .62);
}

.modal {
  position: relative;
  width: min(650px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 36px 38px 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.close-button {
  position: absolute;
  top: 16px;
  right: 20px;
  border: 0;
  background: transparent;
  color: #475467;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.modal-header h2,
.wizard-success h2 {
  text-align: center;
  font-size: 32px;
}

.modal-header span {
  display: block;
  margin-top: 18px;
  color: #475467;
}

.progress {
  height: 4px;
  margin: 16px 0 22px;
  background: #edf0f3;
}

.progress span {
  display: block;
  height: 100%;
  width: 33.333%;
  background: var(--green);
  transition: width .2s ease;
}

.wizard-form {
  display: grid;
  gap: 18px;
}

.wizard-step {
  display: none;
  gap: 18px;
}

.wizard-step.active {
  display: grid;
}

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

fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 0;
  border: 0;
  color: #475467;
}

legend {
  width: 100%;
  margin-bottom: 4px;
  font-weight: 600;
}

fieldset label,
.check-line {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

fieldset input,
.check-line input {
  width: auto;
  min-height: auto;
}

.modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.modal-actions .btn-primary {
  min-width: 178px;
}

.wizard-success {
  text-align: center;
}

.wizard-success p {
  color: var(--muted);
  line-height: 1.6;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 20px;
  background: rgba(16, 24, 40, .96);
  color: var(--white);
  font-size: 13px;
  text-align: center;
}

.event-create-page {
  background: var(--soft);
}

.create-hero {
  padding: 28px 0 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .88) 46%, rgba(255, 255, 255, .16) 100%),
    url("../img/hero-eventos.png") center 42% / cover;
}

.create-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 42px;
  align-items: center;
}

.create-hero h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1;
}

.create-hero .lead {
  margin-top: 14px;
  max-width: 720px;
  font-size: 17px;
}

.create-summary {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 38px rgba(16, 24, 40, .10);
}

.create-summary span,
.field-hint {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.event-success-screen {
  padding: 64px 0 90px;
}

.event-success-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 14%, rgba(200, 230, 0, .22), transparent 34%),
    #fff;
  box-shadow: var(--shadow);
}

.event-success-copy h1 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .98;
}

.event-success-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.event-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.event-success-illustration {
  min-height: 280px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(200, 230, 0, .18), rgba(255, 255, 255, .72)),
    url("../img/hero-eventos.png") center / cover;
  overflow: hidden;
}

.event-success-illustration svg {
  width: min(100%, 420px);
  height: auto;
  filter: drop-shadow(0 20px 34px rgba(16, 24, 40, .18));
}

.event-form {
  display: grid;
  gap: 22px;
  padding-top: 34px;
  padding-bottom: 70px;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
}

.wizard-progress button {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px;
  background: #f8fafc;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.wizard-progress span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e5e9ef;
  color: #606873;
  flex: 0 0 auto;
}

.wizard-progress button.active {
  border-color: rgba(196, 215, 15, .55);
  background: rgba(196, 215, 15, .14);
  color: var(--navy);
}

.wizard-progress button.active span,
.wizard-progress button.done span {
  background: var(--green);
  color: #111400;
}

.wizard-progress button.done {
  color: var(--navy);
}

.wizard-step-page {
  display: none;
}

.wizard-step-page.active {
  display: grid;
  gap: 22px;
}

.wizard-step-page.step-enter {
  animation: stepSlideIn .26s ease both;
}

@keyframes stepSlideIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-panel {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
}

.compact-panel {
  padding: 20px 28px;
}

.panel-heading {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.panel-heading > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--green);
  font-weight: 900;
}

.panel-heading h2 {
  font-size: clamp(22px, 3vw, 32px);
}

.panel-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.image-preview {
  min-height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed #b8c1cc;
  border-radius: 8px;
  background: #f8fafc;
  color: var(--muted);
  font-weight: 800;
}

.image-preview img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.slug-field {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid #cfd6df;
  border-radius: 8px;
  background: var(--white);
}

.slug-field span {
  height: 100%;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-right: 1px solid #cfd6df;
  background: #f8fafc;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.slug-field input {
  border: 0;
  border-radius: 0;
}

.slug-field:focus-within {
  outline: 3px solid rgba(197, 217, 0, .26);
  border-color: var(--green-dark);
}

.rich-editor {
  min-height: 240px;
  background: var(--white);
}

.ql-toolbar.ql-snow,
.ql-container.ql-snow {
  border-color: #cfd6df;
}

.ql-toolbar.ql-snow {
  border-radius: 8px 8px 0 0;
}

.ql-container.ql-snow {
  border-radius: 0 0 8px 8px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
}

.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: "Parágrafo";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: "Título";
}

.ql-editor h2,
.event-description h2 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.22;
}

.ql-editor p,
.event-description p {
  margin: 0 0 14px;
}

.ticket-toolbar {
  display: flex;
  justify-content: flex-end;
}

.ticket-list {
  display: grid;
  gap: 16px;
}

.ticket-item {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.ticket-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.form-actions-bar {
  position: sticky;
  bottom: 0;
  z-index: 20;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 -10px 24px rgba(16, 24, 40, .08);
}

.form-message {
  padding: 16px 18px;
  border-radius: 8px;
  font-weight: 800;
}

.form-message.success {
  border: 1px solid rgba(124, 141, 0, .34);
  background: rgba(196, 215, 15, .18);
  color: #394200;
}

.form-message.error {
  border: 1px solid rgba(207, 46, 46, .24);
  background: rgba(207, 46, 46, .08);
  color: #8a1c1c;
}

.form-message a {
  text-decoration: underline;
}

.form-message.floating-message {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 200;
  width: min(520px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 12px;
  align-items: start;
  overflow: hidden;
  padding: 16px 16px 18px 18px;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 24, 40, .20);
  animation: floatingMessageIn .2s ease both;
}

.form-message.floating-message.success {
  background: #f7fbe3;
}

.form-message.floating-message.error {
  background: #fff0ee;
}

.floating-message-content {
  line-height: 1.45;
}

.floating-message-close {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .68);
  color: currentColor;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.floating-message-close:hover {
  background: rgba(255, 255, 255, .94);
}

.floating-message-timer {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: currentColor;
  opacity: .7;
  transform-origin: left center;
  animation: floatingMessageTimer 5s linear forwards;
}

@keyframes floatingMessageIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatingMessageTimer {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

.visibility-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.visibility-row label {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}

.account-mode {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.account-mode label {
  min-height: 46px;
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--navy);
}

.account-mode input {
  width: auto;
  min-height: auto;
}

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

.account-grid .account-name {
  grid-column: 1 / -1;
  order: 10;
}

.account-grid .account-email {
  order: 20;
}

.account-grid .account-phone {
  order: 21;
}

.account-grid .account-password {
  order: 30;
}

.account-grid .account-confirm {
  order: 31;
}

.account-grid .account-hint {
  grid-column: 1 / -1;
  order: 40;
}

.admin-auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    linear-gradient(110deg, rgba(255,255,255,.96), rgba(255,255,255,.72)),
    url("../img/hero-eventos.png") center / cover;
}

.admin-auth-card {
  width: min(520px, 100%);
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}

.admin-auth-card h1,
.admin-head h1 {
  font-size: clamp(36px, 5vw, 56px);
}

.admin-login-form {
  display: grid;
  gap: 16px;
}

.admin-resend-form {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.admin-resend-form label {
  font-size: 14px;
}

.admin-page {
  min-height: 100vh;
  padding-bottom: 70px;
  background: var(--soft);
}

.admin-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 0 28px;
}

.admin-list-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
}

.empty-state {
  display: grid;
  place-items: start;
  gap: 12px;
  padding: 36px;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
}

.empty-state h2,
.empty-state p {
  margin: 0;
}

.event-table {
  display: grid;
  gap: 10px;
}

.event-table-head,
.event-table-row {
  display: grid;
  grid-template-columns: 1.7fr .8fr .6fr .6fr;
  gap: 16px;
  align-items: center;
}

.event-table-actions .event-table-head,
.event-table-actions .event-table-row {
  grid-template-columns: 1.7fr .75fr .55fr .55fr 130px;
}

.event-table-head {
  padding: 0 14px 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-table-row {
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.event-table-row div {
  display: grid;
  gap: 4px;
}

.event-table-row a {
  color: var(--green-dark);
  font-weight: 800;
  word-break: break-word;
}

.status-badge {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(196, 215, 15, .18);
  color: #596900;
  font-size: 12px;
  font-weight: 900;
}

.event-public-hero {
  padding: 54px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(196, 215, 15, .16), transparent 34%),
    var(--white);
}

.event-public-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: 42px;
  align-items: center;
}

.event-public-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.event-public-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
}

.event-description {
  color: #344054;
  line-height: 1.75;
}

.registration-box {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
}

.registration-box h2 {
  font-size: 26px;
}

.registration-option {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.form-footer-actions {
  display: flex;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
}

.finished-event-alert {
  display: grid;
  gap: 4px;
  max-width: 560px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(196, 215, 15, .55);
  border-radius: 8px;
  background: rgba(196, 215, 15, .16);
  color: var(--navy);
}

.finished-event-alert strong {
  font-size: 18px;
}

.disabled-link {
  pointer-events: none;
  opacity: .72;
}

.not-found-event-page {
  min-height: calc(100vh - 84px);
  background:
    radial-gradient(circle at 78% 18%, rgba(196, 215, 15, .22), transparent 34%),
    var(--soft);
}

.not-found-event {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: center;
  padding-block: 76px 42px;
}

.not-found-event h1 {
  max-width: 760px;
  margin-top: 10px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .96;
}

.not-found-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 720px;
  margin-top: 28px;
}

.not-found-search label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.not-found-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.not-found-card strong {
  color: var(--green-dark);
  font-size: 82px;
  line-height: 1;
}

.not-found-card span {
  color: var(--muted);
  font-weight: 800;
}

.not-found-results {
  padding-bottom: 70px;
}

.not-found-results h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.event-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-result-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
}

.event-result-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

.event-result-card span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-result-card strong {
  color: var(--navy);
  font-size: 18px;
}

.event-result-card small {
  color: var(--muted);
  font-weight: 800;
}

.manage-shell {
  min-height: calc(100vh - 83px);
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  background: var(--soft);
}

.manage-sidebar {
  position: sticky;
  top: 83px;
  height: calc(100vh - 83px);
  padding: 24px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.manage-event-title {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
}

.manage-event-title span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.manage-event-title strong {
  color: var(--navy);
  line-height: 1.2;
}

.manage-event-title .status-badge {
  color: #596900;
  text-transform: none;
}

.sidebar-publish-form {
  display: grid;
  gap: 14px;
  margin: -4px 0 20px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  border: 1px solid rgba(196, 215, 15, .54);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(196, 215, 15, .24), rgba(255, 255, 255, .92)),
    #fbfdee;
  box-shadow: 0 14px 30px rgba(16, 24, 40, .08);
}

.sidebar-publish-form strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.2;
}

.sidebar-publish-form span {
  display: block;
  margin-top: 4px;
  color: #596900;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.sidebar-publish-form .btn {
  width: 100%;
  justify-content: center;
}

.manage-sidebar nav,
.manage-submenu {
  display: grid;
  gap: 8px;
}

.manage-sidebar button,
.manage-sidebar a {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  background: transparent;
  color: #475467;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.manage-sidebar button.active,
.manage-sidebar a.active,
.manage-sidebar button:hover,
.manage-sidebar a:hover {
  background: rgba(196, 215, 15, .16);
  color: var(--navy);
}

.manage-submenu {
  display: none;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 2px solid var(--line);
}

.manage-submenu.open {
  display: grid;
}

.manage-submenu button,
.manage-submenu a {
  min-height: 38px;
  font-size: 14px;
}

.manage-content {
  padding: 34px;
}

.manage-tab {
  display: none;
}

.manage-tab.active {
  display: grid;
  gap: 22px;
}

.manage-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-grid article {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
}

.dashboard-grid span {
  color: var(--muted);
  font-weight: 800;
}

.dashboard-grid strong {
  color: var(--navy);
  font-size: 30px;
}

.publish-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
}

.publish-panel h2 {
  margin-top: 4px;
  color: var(--navy);
  font-size: 26px;
}

.publish-panel p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.publish-panel form {
  flex: 0 0 auto;
}

.appearance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.appearance-panel {
  display: grid;
  gap: 20px;
}

.appearance-color-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.appearance-color-grid input[type="color"] {
  min-height: 54px;
  padding: 6px;
}

.appearance-panel input[type="range"] {
  accent-color: var(--green);
  min-height: auto;
  padding: 0;
}

.background-image-current {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.background-image-current img {
  width: 132px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.background-image-current div {
  display: grid;
  gap: 3px;
}

.background-image-current strong {
  color: var(--navy);
}

.background-image-current span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.is-hidden {
  display: none !important;
}

.appearance-preview {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 24, 40, .08);
}

.appearance-preview > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.appearance-preview > div {
  min-height: 420px;
  display: grid;
  align-content: stretch;
  gap: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--preview-bg);
  color: var(--preview-text);
}

.appearance-preview-frame {
  border: 1px solid var(--line);
}

.appearance-preview-hero {
  min-height: 250px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px;
  background:
    linear-gradient(90deg, var(--preview-overlay, color-mix(in srgb, var(--preview-header-bg) 72%, transparent)), var(--preview-overlay, color-mix(in srgb, var(--preview-header-bg) 72%, transparent))),
    var(--preview-image, radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--preview-primary) 28%, transparent), transparent 34%)),
    var(--preview-header-bg, var(--preview-bg));
  background-size: cover;
  background-position: center;
}

.appearance-preview-body {
  display: grid;
  justify-content: end;
  align-content: center;
  min-height: 170px;
  padding: 26px;
  background: var(--preview-bg);
}

.appearance-preview p {
  margin: 0;
  color: var(--preview-secondary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.appearance-preview h2 {
  font-size: 34px;
  line-height: 1;
}

.appearance-preview strong,
.appearance-preview button {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 12px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--preview-primary);
  color: var(--preview-secondary);
  font-weight: 900;
}

.appearance-preview section {
  width: fit-content;
  min-width: 190px;
  margin-top: 8px;
  padding: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--preview-box);
  color: var(--preview-box-text);
  box-shadow: 0 12px 24px rgba(16, 24, 40, .12);
}

.appearance-preview h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--preview-box-text);
}

.appearance-preview em {
  display: block;
  padding: 10px;
  border-radius: 8px;
  background: var(--preview-option);
  color: var(--preview-box-text);
  font-style: normal;
  font-size: 13px;
}

.form-actions-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.css-editor-panel textarea {
  min-height: 58vh;
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
  line-height: 1.55;
  color: #d7e0ea;
  background: #141821;
  border-color: #2b3340;
}

.settings-form {
  display: grid;
  gap: 22px;
}

.settings-panel {
  display: grid;
  gap: 18px;
}

.current-image-preview {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.current-image-preview img {
  width: 132px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.current-image-preview div {
  display: grid;
  gap: 3px;
}

.current-image-preview strong {
  color: var(--navy);
}

.current-image-preview span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.settings-ticket-list {
  display: grid;
  gap: 14px;
}

.settings-ticket-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.settings-ticket-card.is-removing {
  opacity: .56;
  border-color: rgba(161, 19, 19, .34);
  background: #fff8f8;
}

.settings-ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.settings-ticket-head strong {
  color: var(--navy);
  font-size: 18px;
}

.settings-remove-option {
  color: #a11313;
  font-size: 14px;
  font-weight: 800;
}

.settings-ticket-card fieldset {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  min-width: 0;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.settings-ticket-card fieldset legend {
  padding: 0 6px;
  color: #475467;
  font-weight: 800;
}

.form-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
}

.builder-list,
.builder-custom {
  display: grid;
  align-content: start;
  gap: 14px;
}

.builder-custom {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
}

.builder-custom h2 {
  font-size: 24px;
}

.builder-field {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(16, 24, 40, .05);
}

.builder-field.is-inactive {
  opacity: .48;
  background: #f8fafc;
}

.builder-field.is-inactive:hover {
  opacity: .72;
}

.builder-field.dragging {
  opacity: .55;
}

.builder-field-main {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
}

.builder-field-main div {
  display: grid;
  gap: 3px;
}

.builder-field-main span,
.builder-field-main small {
  color: var(--muted);
  font-size: 13px;
}

.builder-field-main small {
  width: fit-content;
  margin-top: 2px;
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(196, 215, 15, .18);
  color: #596900;
  font-weight: 800;
}

.drag-handle {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f1f5f9;
  color: var(--muted);
  cursor: grab;
}

.switch-line,
.builder-inline-control {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  color: #475467;
  font-weight: 700;
}

.builder-label-edit {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
}

.switch-line input {
  width: auto;
  min-height: auto;
}

.builder-children {
  display: grid;
  gap: 10px;
  margin-left: 40px;
  padding-left: 14px;
  border-left: 2px solid var(--line);
}

.builder-dependency {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.public-registration-form {
  display: none;
  gap: 16px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
}

.public-registration-form.active {
  display: grid;
}

.public-form-field em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.public-choice {
  display: grid;
  gap: 8px;
}

.public-choice label {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
}

.registration-option-action {
  display: grid;
  gap: 10px;
}

.inscription-page {
  min-height: calc(100vh - 83px);
  padding: 42px 0 70px;
  background: var(--soft);
}

.inscription-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.inscription-summary,
.inscription-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
}

.inscription-summary {
  display: grid;
  gap: 14px;
  padding: 22px;
  position: sticky;
  top: 110px;
}

.inscription-summary img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
}

.inscription-summary h1 {
  font-size: 34px;
}

.inscription-summary p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.inscription-card {
  display: grid;
  gap: 20px;
  padding: 28px;
}

.inscription-card h2 {
  font-size: 34px;
}

.confirmation-card {
  align-content: start;
}

.user-area-page {
  min-height: calc(100vh - 83px);
  padding: 54px 0 70px;
  background:
    radial-gradient(circle at 78% 18%, rgba(196, 215, 15, .18), transparent 34%),
    var(--soft);
}

.user-access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 42px;
  align-items: start;
}

.user-access-copy {
  padding-top: 34px;
}

.user-access-card,
.user-voucher-panel {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
}

.user-register-box {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.user-register-box summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.user-register-box form {
  margin-top: 16px;
}

.user-cpf-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px auto;
  gap: 18px;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(196, 215, 15, .55);
  border-radius: 8px;
  background: rgba(196, 215, 15, .12);
}

.user-cpf-link div {
  display: grid;
  gap: 4px;
}

.user-cpf-link span {
  color: var(--muted);
  line-height: 1.45;
}

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

.voucher-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 24, 40, .05);
}

.voucher-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

.voucher-card span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.voucher-card h2 {
  font-size: 24px;
}

.voucher-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.voucher-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.visibility-row input {
  width: auto;
  min-height: auto;
}

.help-dot {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d7dce2;
  color: #606873;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav.open {
    display: flex;
  }

  .hero-grid,
  .hero-media {
    min-height: 360px;
  }

  .hero-media img {
    height: 390px;
    border-radius: 8px 8px 8px 42px;
  }

  .search-form,
  .service-grid,
  .highlight-grid,
  .benefit-grid,
  .wizard-progress,
  .event-public-grid,
  .event-public-content,
  .inscription-layout,
  .event-table-head,
  .event-table-row,
  .event-table-actions .event-table-head,
  .event-table-actions .event-table-row,
  .manage-shell,
  .dashboard-grid,
  .not-found-event,
  .event-result-grid,
  .not-found-search,
  .appearance-layout,
  .form-builder,
  .user-access-layout,
  .user-cpf-link,
  .voucher-grid,
  .event-success-card,
  .builder-field-main,
  .builder-dependency {
    grid-template-columns: 1fr;
  }

  .publish-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .manage-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .manage-content {
    padding: 24px 20px;
  }

  .inscription-summary {
    position: static;
  }

  .quick-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .organizer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .create-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1280px);
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: 39px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions,
  .modal-actions,
  .form-actions-bar,
  .cookie-bar,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .status-panel {
    left: 12px;
    bottom: 14px;
  }

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

  .modal {
    padding: 34px 20px 22px;
  }

  .modal-header h2,
  .wizard-success h2 {
    font-size: 26px;
  }
}
