:root {
  --green: #51a47a;
  --green-dark: #2d7d5a;
  --pink: #f7d7ec;
  --text: #1f1f1f;
  --muted: #666;
  --border: #dddddd;
  --background: #f5f5f5;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #F7EDE2 !important;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.55;
}

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-image {
  min-height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink), #d8fff0);
}

.hero-image img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  display: block;
}

.hero-image.fallback::after {
  content: "CREATOR CASTING BRASIL";
  display: grid;
  place-items: center;
  height: 220px;
  font-size: 30px;
  font-weight: 700;
  color: white;
  font-weight: bold;
  letter-spacing: 2px;
}

.intro-card,
.form-card {
  background: var(--white);
  border-radius: 0 0 14px 14px;
  padding: 34px;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.intro-card {
  position: relative;
  background-color: #DDBC93;
  border-radius: 0;
  margin: 0;
}

.g6-link{
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.brand-line {
  height: 10px;
  background: var(--green);
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

h1 {
  margin: 18px 0 28px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 500;
}

h2 {
  margin: 0 0 24px;
  font-size: 24px;
}

label,
fieldset {
  display: block;
  margin: 0 0 22px;
  font-size: 16px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="date"],
textarea,
input[type="file"] {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 16px;
  background: #fff;
}

textarea {
  resize: vertical;
}

fieldset {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

legend {
  padding: 0 8px;
  font-weight: 600;
}

.options {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.options label,
.checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

input[type="radio"],
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hint {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.lgpd {
  background: #f8faf9;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin: 28px 0;
}

button {
  width: 100%;
  border: none;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  padding: 16px 22px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.navbar-toggler-vaellune{
 width: 60px;
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 20px, 920px);
    padding-top: 10px;
  }

  .intro-card,
  .form-card {
    padding: 24px 18px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
