/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-deep:   #0d0d07;
    --bg-dark:   #141409;
    --bg-card:   #1a1c0d;
    --bg-card-2: #20230f;
    --gold:      #c9a84c;
    --gold-light:#dfbe6e;
    --gold-soft: #b08f38;
    --green:     #2D5016;
    --green-dim: #1e3610;
    --cream:     #f5f0e8;
    --text:      #e8dfc8;
    --text-dim:  #a89870;
    --line:      rgba(201, 168, 76, 0.22);
    --shadow-glow: 0 0 80px rgba(201, 168, 76, 0.12);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container.narrow { max-width: 880px; }

.gold { color: var(--gold); }

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.1;
    color: var(--cream);
    letter-spacing: -0.01em;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto;
}

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--line);
    border-radius: 100px;
}

/* ============================================
   SECTIONS
============================================ */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-tinted {
    background:
        radial-gradient(ellipse at top, rgba(201, 168, 76, 0.07), transparent 60%),
        linear-gradient(rgba(10, 10, 7, 0.91), rgba(10, 10, 7, 0.91)),
        url('FUNDO.png') center / cover;
}

.section-dark {
    background: linear-gradient(180deg, var(--bg-deep) 0%, #0a0a05 100%);
}

.center { text-align: center; }

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, #dfbe6e 0%, var(--gold) 50%, #b08f38 100%);
    color: #0a0a04;
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.32), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(201, 168, 76, 0.42), inset 0 1px 0 rgba(255,255,255,0.35);
    filter: brightness(1.06);
}

.btn-large {
    padding: 1.4rem 2.8rem;
    font-size: 0.95rem;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-2px);
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(10, 10, 4, 0.18);
    font-size: 0.82rem;
}

/* ============================================
   LOGO — hero principal
============================================ */
.hero-main-logo-wrap {
    margin: 1.5rem 0 2.8rem;
}

.hero-main-logo {
    max-width: 540px;
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: invert(1) brightness(0.95) drop-shadow(0 0 32px rgba(201, 168, 76, 0.2));
}

/* ============================================
   HERO
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 0 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(45, 80, 22, 0.14), transparent 60%),
        radial-gradient(ellipse 50% 40% at 60% 20%, rgba(201, 168, 76, 0.08), transparent 50%),
        linear-gradient(rgba(10, 10, 7, 0.93), rgba(10, 10, 7, 0.93)),
        url('FUNDO.png') center / cover;
    overflow: hidden;
}

.hero-bg-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 5rem;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.hero-logo-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-logo-line.right {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-logo-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.18);
}

.hero-event-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: 100px;
    margin-bottom: 2rem;
}

.hero-event-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--cream);
    line-height: 0.9;
    margin-bottom: 0.6rem;
}

.hero-title-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-divider-line {
    width: 80px;
    height: 1px;
    background: var(--line);
}

.hero-divider-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.hero-dates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.hero-date-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1;
}

.hero-date-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--text-dim);
    text-transform: uppercase;
}

.hero-date-sep {
    width: 1px;
    height: 32px;
    background: var(--line);
}

/* ============================================
   MARQUEE
============================================ */
.marquee {
    overflow: hidden;
    background: linear-gradient(90deg, #131306 0%, #1a1c09 50%, #131306 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 0;
    position: relative;
    z-index: 3;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    text-transform: uppercase;
}

.marquee-sep { color: var(--gold) !important; opacity: 0.5; }

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SOBRE (ABOUT)
============================================ */
.about-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-glow);
    max-width: 880px;
    margin: 0 auto;
}

.about-card-corner {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 0 0 4px 4px;
}

.about-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.stat-item { text-align: center; }

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* ============================================
   EXPERIÊNCIAS
============================================ */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.exp-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exp-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-soft);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 168, 76, 0.1);
}

.exp-card-top {
    position: absolute;
    top: -1px;
    left: 1.5rem;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 0 0 4px 4px;
}

.exp-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: rgba(201, 168, 76, 0.18);
    line-height: 1;
}

.exp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.exp-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.2;
    flex: 1;
}

.exp-title span {
    display: block;
    font-size: 0.7rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.exp-concept {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.exp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.6rem 1rem;
    border: 1px solid var(--line);
    border-radius: 100px;
    cursor: pointer;
    background: transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
    font-family: 'Inter', sans-serif;
    width: fit-content;
    margin-top: auto;
}

.exp-btn:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold-soft);
}

/* ============================================
   O STAND / GALERIA
============================================ */
.section-stand {
    background: linear-gradient(180deg, #0a0a07 0%, var(--bg-deep) 100%);
    padding-bottom: 4rem;
}

/* Galeria horizontal */
.gallery-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 2.5rem 0;
    padding: 0 24px;
    cursor: grab;
}

.gallery-strip:active { cursor: grabbing; }
.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-track {
    display: flex;
    gap: 12px;
    width: max-content;
}

.gallery-item {
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    height: 320px;
    width: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
    min-width: 240px;
    max-width: 460px;
}

/* Detalhes em linha horizontal */
.stand-details-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-top: 1rem;
}

.stand-detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    min-width: 200px;
}

.stand-detail-icon {
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stand-detail-item div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.stand-detail-item strong {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream);
}

.stand-detail-item span {
    font-size: 0.9rem;
    color: var(--text-dim);
}

@media (max-width: 860px) {
    .stand-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ============================================
   FORMULÁRIO PREMIUM
============================================ */
.form-section {
    background:
        radial-gradient(ellipse at top, rgba(45, 80, 22, 0.1), transparent 50%),
        radial-gradient(ellipse at bottom, rgba(201, 168, 76, 0.05), transparent 50%),
        linear-gradient(rgba(10, 10, 7, 0.90), rgba(10, 10, 7, 0.90)),
        url('FUNDO.png') center / cover fixed;
}

.form-wrapper {
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 3.5rem;
    box-shadow: var(--shadow-glow);
    position: relative;
}

.form-wrapper-top {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-group-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group-title h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cream);
}

.form-group-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.form-divider {
    height: 1px;
    background: var(--line);
    margin: 2.5rem 0;
}

.form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-field label {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.form-field input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field input:focus {
    border-color: var(--gold-soft);
    background: rgba(201, 168, 76, 0.04);
}

.form-field input::placeholder { color: rgba(168, 152, 112, 0.4); }

/* Checkboxes */
.checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.55rem 1rem;
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 0.84rem;
    color: var(--text-dim);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    user-select: none;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkbox-label:hover {
    border-color: var(--gold-soft);
    color: var(--text);
}

.checkbox-label.checked,
.checkbox-label:has(input:checked) {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--gold);
    color: var(--cream);
}

.checkbox-label .check-icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
    font-size: 0.6rem;
}

.checkbox-label:has(input:checked) .check-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: #0a0a04;
}

/* Time slots */
.slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.slot-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.7rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    user-select: none;
}

.slot-label input[type="radio"] { display: none; }

.slot-label:hover {
    border-color: var(--gold-soft);
    color: var(--text);
}

.slot-label:has(input:checked) {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--gold);
    color: var(--cream);
}

.slot-icon {
    font-size: 0.85rem;
    color: var(--gold);
}

.form-submit {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.form-submit p {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-top: 1rem;
}

/* ============================================
   FOOTER
============================================ */
.footer-logo {
    height: 44px;
    width: auto;
    display: block;
    margin: 0 auto 0.8rem;
    filter: invert(1) brightness(0.85);
    opacity: 0.7;
}

.footer {
    padding: 3rem 0 4rem;
    border-top: 1px solid var(--line);
    background: #080807;
    text-align: center;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--cream);
    margin-bottom: 0.4rem;
}

.footer-event {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.8rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE — TABLET (max-width: 1100px)
============================================ */
@media (max-width: 1100px) {
    .experiences-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — TABLET/MOBILE (max-width: 860px)
============================================ */
@media (max-width: 860px) {
    .section { padding: 3.5rem 0; }
    .about-card { padding: 2rem 1.5rem; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .form-wrapper { padding: 2.5rem 1.5rem; }
    .form-fields { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 640px)
============================================ */
@media (max-width: 640px) {

    /* Hero — centralizado, sem espaço vazio */
    .hero {
        min-height: 100svh;
        padding: 0;
        justify-content: center;
    }

    .hero-content {
        padding-top: 2rem;
        padding-bottom: 2.5rem;
    }

    .hero-main-logo-wrap { margin: 0.8rem 0 1.6rem; }
    .hero-main-logo { width: 72%; }

    .hero-event-tag {
        font-size: 0.65rem;
        padding: 0.38rem 0.8rem;
        margin-bottom: 1rem;
    }

    /* Datas: 3 pills lado a lado sem separador */
    .hero-dates {
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .hero-date-sep { display: none; }

    .hero-date-item {
        background: rgba(201, 168, 76, 0.07);
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 0.45rem 0.9rem;
        align-items: center;
        flex-direction: row;
        gap: 0.4rem;
    }

    .hero-date-value {
        font-size: 1rem;
    }

    .hero-date-label {
        font-size: 0.62rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.8rem;
        padding: 0 0.5rem;
    }

    /* CTA full-width */
    .hero-content > .btn-large {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 1rem;
        font-size: 0.85rem;
    }

    /* Seções */
    .section { padding: 2.5rem 0; }

    .section-header { margin-bottom: 2rem; }

    /* Sobre */
    .about-card {
        padding: 1.8rem 1.2rem;
        border-radius: 18px;
    }

    .about-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }

    .stat-num { font-size: 2rem; }
    .stat-label { font-size: 0.62rem; letter-spacing: 0.08em; }

    /* Experiências */
    .experiences-grid { grid-template-columns: 1fr; }

    /* Stand */
    .stand-details { padding: 1rem 0.8rem; }
    .stand-content { gap: 1rem; }

    /* Formulário */
    .form-wrapper {
        padding: 1.8rem 1rem;
        border-radius: 20px;
    }

    .form-group-title { margin-bottom: 1rem; }
    .form-divider { margin: 1.8rem 0; }

    /* Checkboxes — alvos de toque maiores */
    .checkbox-label {
        min-height: 48px;
        padding: 0.6rem 1rem;
        font-size: 0.86rem;
        border-radius: 12px;
    }

    .checkbox-grid { gap: 0.4rem; }

    /* Interesses e Temas: nomes longos → 1 coluna */
    #interesses,
    #temas {
        display: grid;
        grid-template-columns: 1fr;
    }

    /* Acompanhantes: nomes curtos → 2 colunas */
    #acompanhantes {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    /* Slots — grade 2 colunas */
    .slots-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .slot-label {
        min-height: 52px;
        justify-content: center;
        border-radius: 12px;
        font-size: 0.92rem;
    }

    /* Submit full-width */
    .form-submit { padding-top: 1.8rem; margin-top: 1.8rem; }

    .form-submit .btn-large {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
    }

    /* Botões gerais */
    .btn { font-size: 0.82rem; }
    .btn-large { padding: 1.2rem 1.5rem; }
}
