:root {
  --white: #fdfa01;
  --black: #0d0d0d;
  --glass: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.2);
  --accent: #fdfa01;
}

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

body {
  font-family: "Space Grotesk", "Syncopate", sans-serif;
  color: var(--white);
  background: #ffffff;
  min-height: 100vh;
  position: relative;
}

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

main {
  position: relative;
  z-index: 1;
}


.btn {
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.btn.ghost {
  border: 1px solid rgba(11, 11, 11, 0.5);
  background: var(--black);
  color: var(--white);
}

.btn.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
  padding: 10px 20px;
}

.btn.accent {
  background: var(--accent);
  color: var(--black);
}

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

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 30;
  padding: 20px;
}

.modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #111111;
  border-radius: 18px;
  padding: 28px;
  width: min(75vw, 520px);
  max-height: 75vh;
  overflow-y: auto;
  color: var(--white);
  position: relative;
  box-sizing: border-box;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.form-error {
  color: #ff6b6b;
  font-size: 13px;
  min-height: 18px;
}

.form-hint {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}


.hero-content p{
    color: black;
}
/* Tema claro base */
body.theme-light {
  background: #f7f4ee;
  color: #141414;
}

body.theme-light .form input,
body.theme-light .form select,
body.theme-light .form textarea {
  color: #141414;
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.15);
}

body.theme-light .form-hint {
  color: rgba(0, 0, 0, 0.6);
}

body.theme-light .form-error {
  color: #b91c1c;
}

/* Utility for accessible hiding */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}