@font-face {
  font-family: "Tusker 6700";
  src: url("/assets/fonts/TuskerGrotesk-6700Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --font-display: "Tusker 6700", Impact, Haettenschweiler, sans-serif;
  --font-body: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  --font-accent: "Brush Script MT", "Segoe Script", "Bradley Hand", cursive;
  --background: #0a0808;
  --foreground: #f5f1ec;
  --card: #ffffff;
  --card-foreground: #0a0808;
  --popover: #ffffff;
  --popover-foreground: #0a0808;
  --primary: #ff5500;
  --primary-foreground: #0a0808;
  --secondary: #201d1b;
  --secondary-foreground: #f5f1ec;
  --muted: #eee9e4;
  --muted-foreground: #706861;
  --accent: #ff5500;
  --accent-foreground: #0a0808;
  --destructive: #b42318;
  --border: #c7beb6;
  --input: #c7beb6;
  --ring: #ff5500;
  --radius: 0.2rem;
}



* {
  box-sizing: border-box;
}

html {
  height: 100%;
  background: #0a0808;
}

body {
  min-height: 100%;
  margin: 0;
  background: #0a0808;
  color: #f5f1ec;
  font-family: var(--font-body);
  font-size: 16px;
}

button,
input {
  font: inherit;
}

.simple-page {
  min-height: 100svh;
  padding: 18px 0 20px;
  background:
    linear-gradient(90deg, #ff5500 0 7px, transparent 7px),
    #0a0808;
}

.simple-wrap {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.mandala-logo {
  display: block;
  width: 168px;
  height: auto;
  margin: 0 auto 14px;
  object-fit: contain;
}

.landing-card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(450px, 0.9fr) minmax(560px, 1.1fr);
  background: #f5f1ec;
  color: #0a0808;
  box-shadow: 9px 9px 0 #ff5500;
}

.landing-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 76px;
  height: 7px;
  background: #ff5500;
  content: "";
}

.poster-panel {
  display: grid;
  min-height: 640px;
  place-items: center;
  padding: 0;
  background: #0a0808;
}

.event-poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.content-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(26px, 3.2vw, 42px);
  background: #f5f1ec;
}

.event-label {
  display: inline-block;
  margin: 0 0 9px;
  color: #d94800;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.event-copy h1 {
  display: grid;
  max-width: 620px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.event-title-line {
  display: block;
}

.event-title-accent {
  display: block;
  margin: -0.09em 0 -0.04em 0.42em;
  color: #ff5500;
  font-family: var(--font-accent);
  font-size: 0.88em;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.84;
  text-transform: none;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.event-description {
  max-width: 560px;
  margin: 11px 0 0;
  color: #655e58;
  font-size: 0.9rem;
  line-height: 1.42;
}

.event-date {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 12px;
  border-top: 1px solid #d9d2cc;
  border-bottom: 1px solid #d9d2cc;
  padding: 8px 0;
}

.event-date strong {
  color: #ff5500;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.event-date span {
  color: #312c29;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-card {
  border-top: 4px solid #ff5500;
  padding-top: 13px;
}

.form-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.form-intro {
  margin: 4px 0 12px;
  color: #6a625c;
  font-size: 0.82rem;
  line-height: 1.4;
}

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

.field-group {
  display: grid;
  gap: 4px;
}

.field-group label {
  color: #241f1c;
  font-size: 0.72rem;
  font-weight: 800;
}

.field-group label span {
  color: #8a817a;
  font-size: 0.72rem;
  font-weight: 500;
}

.field-group input {
  height: 40px;
  border: 1px solid #c7beb6;
  border-radius: 2px;
  background: #ffffff;
  padding: 0 12px;
  color: #0a0808;
  font-size: 0.84rem;
  box-shadow: none;
}

.field-group input::placeholder {
  color: #918981;
}

.field-group input:focus-visible {
  border-color: #ff5500;
  box-shadow: 0 0 0 3px rgb(255 85 0 / 15%);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

.consent-row button {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-color: #7f766f;
  border-radius: 2px;
  background: #fff;
}

.consent-row button[data-state="checked"] {
  border-color: #ff5500;
  background: #ff5500;
  color: #0a0808;
}

.consent-row label {
  color: #6b645e;
  font-size: 0.69rem;
  font-weight: 500;
  line-height: 1.35;
}

.submit-button {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 2px;
  background: #ff5500;
  color: #0a0808;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.submit-button:hover:not(:disabled),
.submit-button:focus-visible:not(:disabled) {
  background: #0a0808;
  color: #ffffff;
}

.submit-button svg {
  width: 18px;
}

.privacy-note {
  margin: -2px 0 0;
  color: #817870;
  font-size: 0.7rem;
  text-align: center;
}

.form-error {
  margin: -2px 0 0;
  border-left: 3px solid #b42318;
  padding: 7px 9px;
  background: rgb(180 35 24 / 8%);
  color: #8d1c1c;
  font-size: 0.8rem;
  line-height: 1.4;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.success-state {
  display: grid;
  min-height: 305px;
  align-content: center;
  justify-items: start;
}

.success-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 18px;
  background: #ff5500;
}

.success-icon svg {
  width: 25px;
  height: 25px;
}

.success-state h3 {
  margin: 0 0 9px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.success-state p {
  margin: 0;
  color: #5d5650;
  line-height: 1.55;
}

.edit-registration {
  margin-top: 22px;
  border: 0;
  border-bottom: 1px solid #0a0808;
  background: transparent;
  padding: 0 0 2px;
  color: #0a0808;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

@media (min-width: 721px) {
  body:has(.simple-page) {
    overflow: hidden;
  }

  .simple-page {
    height: 100svh;
    min-height: 0;
  }

  .simple-wrap {
    height: 100%;
  }

  .landing-card,
  .poster-panel,
  .content-panel {
    min-height: 0;
  }

  .landing-card {
    height: clamp(610px, calc(100svh - 94px), 790px);
  }

  .poster-panel {
    overflow: hidden;
  }
}

@media (min-width: 721px) and (max-width: 1120px) {
  .landing-card {
    grid-template-columns: minmax(260px, 0.78fr) minmax(390px, 1fr);
  }

  .content-panel {
    padding: 25px;
  }

  .event-copy h1 {
    font-size: clamp(2.55rem, 5.4vw, 3.4rem);
  }
}

@media (min-width: 721px) and (max-height: 760px) {
  .simple-page {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .mandala-logo {
    width: 142px;
    margin-bottom: 8px;
  }

  .content-panel {
    gap: 11px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .event-label {
    margin-bottom: 6px;
  }

  .event-copy h1 {
    font-size: clamp(2.3rem, 5.4vh, 3.25rem);
  }

  .event-title-accent {
    font-size: 0.84em;
  }

  .event-description {
    margin-top: 7px;
    font-size: 0.78rem;
  }

  .event-date {
    margin-top: 8px;
    padding: 6px 0;
  }

  .form-card {
    padding-top: 9px;
  }

  .form-intro {
    margin-bottom: 8px;
  }

  .registration-form {
    gap: 7px;
  }

  .field-group input {
    height: 36px;
  }

  .submit-button {
    height: 40px;
  }

}

@media (max-width: 720px) {
  body {
    overflow: auto;
  }

  .simple-page {
    padding: 14px 0 24px;
    background:
      linear-gradient(90deg, #ff5500 0 5px, transparent 5px),
      #0a0808;
  }

  .simple-wrap {
    width: min(100% - 18px, 560px);
  }

  .mandala-logo {
    width: 142px;
    margin-bottom: 14px;
  }

  .landing-card {
    grid-template-columns: 1fr;
    box-shadow: 8px 8px 0 #ff5500;
  }

  .poster-panel {
    height: clamp(240px, 76vw, 320px);
    min-height: 0;
    overflow: hidden;
    padding: 0;
  }

  .event-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 39%;
  }

  .content-panel {
    gap: 20px;
    padding: 24px 18px 26px;
  }

  .event-copy h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.2rem);
  }

  .event-title-accent {
    margin: -0.06em 0 -0.02em 0.34em;
    font-size: 0.82em;
  }

  .event-description {
    margin-top: 9px;
    font-size: 0.84rem;
  }

  .event-date {
    margin-top: 10px;
  }

  .form-card h2 {
    font-size: 1.5rem;
  }

  .form-intro {
    margin-bottom: 10px;
  }

  .registration-form {
    gap: 9px;
  }

  .field-group input {
    height: 44px;
  }

  .submit-button {
    height: 48px;
  }
}

@media (max-width: 360px) {
  .content-panel {
    padding-right: 16px;
    padding-left: 16px;
  }

  .event-copy h1 {
    font-size: clamp(2.1rem, 10.5vw, 2.4rem);
  }

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

  .event-date {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.admin-page {
  min-height: 100svh;
  background: #f5f1ec;
  color: #0a0808;
}

.admin-header {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 5px solid #ff5500;
  background: #0a0808;
  padding: 15px max(28px, calc((100vw - 1240px) / 2));
  color: #f5f1ec;
}

.admin-brand,
.admin-account {
  display: flex;
  align-items: center;
}

.admin-brand {
  gap: 18px;
}

.admin-brand img {
  width: 155px;
  height: auto;
}

.admin-brand span {
  border-left: 1px solid #5c5550;
  padding-left: 18px;
  color: #c9c1ba;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-account {
  gap: 15px;
  font-size: 0.82rem;
}

.admin-account span {
  color: #aaa19a;
}

.admin-account a {
  color: #f5f1ec;
  font-weight: 700;
  text-decoration: none;
}

.admin-account a:hover,
.admin-account a:focus-visible {
  color: #ff5500;
}

.admin-content {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 52px;
}

.admin-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.admin-heading h1,
.admin-denied h1 {
  margin: 4px 0 6px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
}

.admin-heading > div > p:last-child {
  margin: 0;
  color: #6d655f;
  font-size: 0.95rem;
}

.admin-eyebrow {
  margin: 0;
  color: #d94800;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-export {
  height: 42px;
  border-radius: 2px;
  background: #ff5500;
  font-weight: 800;
}

.admin-heading-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-export-secondary {
  border-color: #bdb3ab;
  background: transparent;
  color: #0a0808;
}

.admin-export-secondary:hover,
.admin-export-secondary:focus-visible {
  border-color: #0a0808;
  background: #0a0808;
  color: #fff;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.admin-stats article {
  display: flex;
  min-height: 98px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #d9d1c9;
  background: #fff;
  padding: 18px;
}

.admin-stats article.highlight {
  border-color: #ff5500;
  background: #ff5500;
}

.admin-stats span {
  color: #6f6760;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-stats .highlight span {
  color: #0a0808;
}

.admin-stats strong {
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 0.8;
}

.admin-table-card {
  margin-top: 18px;
  border: 1px solid #d9d1c9;
  background: #fff;
}

.admin-export-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  border-left: 5px solid #ff5500;
  background: #fff;
  padding: 14px 16px;
}

.admin-export-note > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #d94800;
}

.admin-export-note strong {
  color: #0a0808;
  font-size: 0.86rem;
}

.admin-export-note p {
  max-width: 840px;
  margin: 3px 0 0;
  color: #6b625c;
  font-size: 0.8rem;
  line-height: 1.45;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #ded7d0;
  padding: 14px;
}

.admin-search {
  position: relative;
  flex: 1;
}

.admin-search > svg {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 17px;
  transform: translateY(-50%);
  color: #746c66;
  pointer-events: none;
}

.admin-search input {
  height: 40px;
  border-radius: 2px;
  padding-left: 38px;
  font-size: 0.875rem;
}

.admin-filter {
  width: 180px;
  height: 40px;
  border-radius: 2px;
  background: #fff;
}

.admin-toolbar > button {
  width: 40px;
  height: 40px;
  border-radius: 2px;
}

.admin-table th {
  height: 42px;
  background: #f2ede8;
  padding-inline: 14px;
  color: #6f6760;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-table td {
  height: 64px;
  padding-inline: 14px;
  color: #332e2b;
  font-size: 0.82rem;
}

.admin-table td:first-child strong,
.admin-table td:first-child a {
  display: block;
}

.admin-table td:first-child strong {
  color: #0a0808;
  font-size: 0.88rem;
}

.admin-table a {
  color: #6b625c;
  text-decoration: none;
}

.admin-table a:hover,
.admin-table a:focus-visible {
  color: #d94800;
  text-decoration: underline;
}

.status-badge {
  border-radius: 2px;
  padding: 4px 7px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.status-novo {
  background: #ff5500;
  color: #0a0808;
}

.status-contatado {
  background: #f2c94c;
  color: #0a0808;
}

.status-confirmado {
  background: #0a0808;
  color: #fff;
}

.status-nao_interessado {
  background: #ded7d0;
  color: #514a45;
}

.admin-empty {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #716963;
  font-size: 0.92rem;
}

.admin-empty svg {
  width: 19px;
}

.admin-error {
  margin: 12px 14px;
  border-left: 3px solid #b42318;
  background: rgb(180 35 24 / 8%);
  padding: 9px 11px;
  color: #8d1c1c;
  font-size: 0.82rem;
}

.admin-dialog {
  border-radius: 2px;
  border-color: #cfc6be;
  background: #f5f1ec;
  color: #0a0808;
}

.admin-dialog [data-slot="dialog-title"] {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-edit-fields {
  display: grid;
  gap: 17px;
}

.admin-edit-fields label {
  display: grid;
  gap: 6px;
  color: #241f1c;
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-edit-fields [data-slot="select-trigger"] {
  width: 100%;
  border-radius: 2px;
  background: #fff;
}

.admin-edit-fields textarea {
  border-radius: 2px;
  background: #fff;
  font-family: var(--font-body);
  font-weight: 400;
}

.admin-denied {
  display: grid;
  min-height: 100svh;
  place-items: center;
  background: #0a0808;
  padding: 24px;
  color: #f5f1ec;
}

.admin-denied > div {
  max-width: 520px;
  border-left: 6px solid #ff5500;
  padding: 18px 24px;
}

.admin-denied p:not(.admin-eyebrow) {
  color: #b9b0a9;
}

.admin-denied a {
  color: #ff5500;
  font-weight: 800;
}

@media (max-width: 760px) {
  .admin-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px 18px;
  }

  .admin-brand img {
    width: 135px;
  }

  .admin-account {
    width: 100%;
    flex-wrap: wrap;
  }

  .admin-account span {
    width: 100%;
  }

  .admin-content {
    width: min(100% - 28px, 620px);
    padding-top: 26px;
  }

  .admin-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-export {
    width: 100%;
  }

  .admin-heading-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-stats {
    grid-template-columns: 1fr 1fr;
  }

  .admin-toolbar {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .admin-search {
    flex-basis: 100%;
  }

  .admin-filter {
    flex: 1;
    width: auto;
  }
}

.admin-denied code {
  border-radius: 2px;
  background: #241f1c;
  padding: 2px 6px;
  color: #ff5500;
  font-size: 0.85em;
}

.admin-login-form {
  display: grid;
  margin-top: 20px;
  gap: 8px;
}

.admin-login-form label {
  color: #b9b0a9;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-login-form input {
  height: 46px;
  border: 1px solid #3a322e;
  border-radius: 2px;
  background: #151110;
  padding: 0 14px;
  color: #f5f1ec;
  font-family: var(--font-body);
  font-size: 1rem;
}

.admin-login-form input:focus-visible {
  border-color: #ff5500;
  outline: none;
}

.admin-login-form button {
  display: inline-flex;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 2px;
  background: #ff5500;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.admin-login-form button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.admin-login-error {
  margin: 0;
  color: #ee665e !important;
  font-size: 0.9rem;
  font-weight: 600;
}

.admin-login-spinner {
  width: 18px;
  height: 18px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.admin-logout {
  border: none;
  background: none;
  padding: 0;
  color: #ff5500;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 800;
}

.admin-logout:hover,
.admin-logout:focus-visible {
  text-decoration: underline;
}

