/* ============================================================
   ARTE EM MOVIMENTO — LP de captura
   Paleta do projeto + identidade visual cinética
   ============================================================ */

:root {
    --amarelo: #f7b350;
    --roxo: #7a336b;
    --roxo-escuro: #522247;
    --rosa: #e34e61;
    --verde: #39b7a1;
    --bg-light: #f9fafb;
    --text-color: #2d3748;
    --muted: #718096;
    --radius: 14px;
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* habilita a borda animada (suporta browsers modernos; fallback = borda estática) */
@property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* --- Barra de progresso do scroll --- */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--amarelo), var(--rosa), var(--verde));
    background-size: 300% 100%;
    transform-origin: 0 50%;
    transform: scaleX(0);
    z-index: 1000;
    pointer-events: none;
}

/* ============================================================
   FUNDO DECORATIVO EM MOVIMENTO (blobs + formas geométricas)
   ============================================================ */

.bg-motion {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(120% 120% at 85% -10%, rgba(231, 78, 97, 0.10), transparent 55%),
        radial-gradient(120% 120% at -10% 110%, rgba(57, 183, 161, 0.12), transparent 55%);
}

/* textura de granulado sutil (estampa artística) */
.bg-motion::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.05;
    mix-blend-mode: multiply;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    will-change: transform;
}

.blob-1 {
    width: 420px;
    height: 420px;
    top: -120px;
    left: -120px;
    background: radial-gradient(circle at 30% 30%, var(--roxo) 0%, transparent 70%);
    animation: float-a 22s var(--ease-out) infinite alternate;
}

.blob-2 {
    width: 360px;
    height: 360px;
    top: 30%;
    right: -140px;
    background: radial-gradient(circle at 60% 40%, var(--verde), transparent 70%);
    animation: float-b 26s var(--ease-out) infinite alternate;
}

.blob-3 {
    width: 300px;
    height: 300px;
    bottom: -90px;
    left: 20%;
    background: radial-gradient(circle at 40% 60%, var(--amarelo), transparent 70%);
    animation: float-a 30s var(--ease-out) infinite alternate-reverse;
}

.blob-4 {
    width: 240px;
    height: 240px;
    bottom: 12%;
    right: 22%;
    background: radial-gradient(circle at 50% 50%, var(--rosa), transparent 70%);
    animation: float-b 20s var(--ease-out) infinite alternate;
}

.ring {
    position: absolute;
    border: 2px solid var(--roxo);
    border-radius: 50%;
    opacity: 0.18;
    animation: spin-slow linear infinite;
}

.ring-1 {
    width: 180px;
    height: 180px;
    top: 18%;
    left: 8%;
    border-color: var(--roxo);
    animation-duration: 40s;
}

.ring-2 {
    width: 90px;
    height: 90px;
    top: 62%;
    left: 55%;
    border-color: var(--rosa);
    animation-duration: 24s;
    animation-direction: reverse;
}

.dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.dot-1 {
    width: 14px;
    height: 14px;
    background: var(--amarelo);
    top: 24%;
    right: 14%;
    animation: float-a 9s ease-in-out infinite alternate;
}

.dot-2 {
    width: 10px;
    height: 10px;
    background: var(--verde);
    top: 48%;
    left: 12%;
    animation: float-b 7s ease-in-out infinite alternate-reverse;
}

.dot-3 {
    width: 18px;
    height: 18px;
    background: var(--rosa);
    bottom: 30%;
    right: 40%;
    animation: float-a 11s ease-in-out infinite alternate;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--roxo-escuro) 0%, var(--roxo) 60%, #8b3a75 100%);
    color: #fff;
    padding: 80px 0 110px;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(247, 179, 80, 0.14), transparent 40%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    translate: calc(var(--mx, 0) * 14px) calc(var(--my, 0) * 10px);
    transition: translate 0.25s ease-out;
}

.badge {
    display: inline-block;
    background-color: var(--amarelo);
    color: #000;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    animation: pop-in 0.7s var(--ease-out) 0.1s both;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    margin: 18px 0;
    line-height: 1.05;
    font-weight: 800;
    display: flex;
    flex-wrap: wrap;
    gap: 0 14px;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: var(--amarelo);
    margin-top: 18px;
    animation: pop-in 0.9s var(--ease-out) 0.15s both;
}

.hero-kicker::before {
    content: "";
    flex: 0 0 auto;
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--amarelo), var(--rosa));
}

.hero-kicker::after {
    content: "";
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--verde);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: 0.6; }
}

.hero-title .word {
    display: inline-block;
    animation: pop-in 0.9s var(--ease-out) both;
}

.hero-title .w-1 { animation-delay: 0.25s; }
.hero-title .w-2 { animation-delay: 0.35s; }
.hero-title .w-3 { animation-delay: 0.45s; }

.hero-title .accent {
    position: relative;
    background: linear-gradient(110deg, #ffe9b3, var(--amarelo), #fff3d6, var(--amarelo), #ffe9b3);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: pop-in 0.9s var(--ease-out) 0.45s both, shimmer 5s ease-in-out 2s infinite;
}

.hero-title .accent::after {
    content: "";
    position: absolute;
    left: 2%;
    right: 2%;
    bottom: 4px;
    height: 10px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--amarelo), var(--rosa), var(--verde));
    opacity: 0.5;
    transform: rotate(-2deg);
    z-index: -1;
}

.hero-sub {
    font-size: 1.15rem;
    opacity: 0.92;
    max-width: 46ch;
    animation: pop-in 0.9s var(--ease-out) 0.6s both;
}

.hero-sub strong {
    color: var(--amarelo);
}

.hero-highlights {
    list-style: none;
    margin: 26px 0 30px;
    display: grid;
    gap: 12px;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    opacity: 0.95;
    animation: pop-in 0.9s var(--ease-out) both;
}

.hero-highlights li:nth-child(1) { animation-delay: 0.7s; }
.hero-highlights li:nth-child(2) { animation-delay: 0.8s; }
.hero-highlights li:nth-child(3) { animation-delay: 0.9s; }

.hl-dot {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--verde);
    box-shadow: 0 0 0 4px rgba(57, 183, 161, 0.25);
}

.cta-secondary {
    display: inline-block;
    padding: 13px 30px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s var(--ease-out), background 0.25s, border-color 0.25s;
    animation: pop-in 0.9s var(--ease-out) 1s both;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--amarelo);
    transform: translateY(-3px);
}

/* --- Countdown regressivo --- */

.countdown {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin: 30px 0 14px;
    animation: pop-in 0.9s var(--ease-out) 1.1s both;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 12px 14px;
    min-width: 64px;
}

.cd-num {
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    font-weight: 800;
    color: var(--amarelo);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.cd-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    margin-top: 4px;
}

.cd-sep {
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    padding-bottom: 8px;
}

.countdown-note {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 26px;
    animation: pop-in 0.9s var(--ease-out) 1.2s both;
}

/* --- Card do formulário --- */

.form-card {
    background: #fff;
    color: var(--text-color);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    translate: calc(var(--mx, 0) * -10px) calc(var(--my, 0) * -8px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), translate 0.25s ease-out;
}

/* borda animada (gradiente rotacionando) */
.form-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 3px;
    background: conic-gradient(
        from var(--border-angle),
        var(--amarelo),
        var(--rosa),
        var(--verde),
        var(--roxo),
        var(--amarelo)
    );
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: spin-border 8s linear infinite;
    pointer-events: none;
}

.form-card::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1.5px dashed rgba(122, 51, 107, 0.18);
    border-radius: calc(var(--radius) - 6px);
    pointer-events: none;
}

.form-card h2 {
    color: var(--roxo);
    margin-bottom: 6px;
    font-size: 1.6rem;
}

.form-hint {
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 22px;
}

.input-group {
    margin-bottom: 18px;
    position: relative;
}

.input-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.input-group input {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid #cbd5e0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}

.input-group input:focus {
    border-color: var(--verde);
    box-shadow: 0 0 0 4px rgba(57, 183, 161, 0.18);
    transform: translateY(-1px);
}

.input-underline {
    position: absolute;
    left: 15px;
    bottom: 13px;
    right: calc(100% - 15px);
    height: 2px;
    background: linear-gradient(90deg, var(--verde), var(--amarelo));
    transition: right 0.4s var(--ease-out);
}

.input-group input:focus ~ .input-underline,
.input-group input:not(:placeholder-shown) ~ .input-underline {
    right: 15px;
}

/* --- Seletor de dias (pills) --- */

.day-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pill {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.pill span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 44px;
    border: 1.5px solid #cbd5e0;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--muted);
    background: #fff;
    transition: all 0.25s var(--ease-out);
}

.pill:hover span {
    border-color: var(--amarelo);
    color: var(--roxo);
    transform: translateY(-2px);
}

.pill input:checked + span {
    background: linear-gradient(135deg, var(--roxo), var(--rosa));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 14px rgba(122, 51, 107, 0.3);
}

.pill input:focus-visible + span {
    outline: 3px solid rgba(57, 183, 161, 0.5);
    outline-offset: 2px;
}

button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--rosa), #c93b4e);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s var(--ease-out), box-shadow 0.25s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(227, 78, 97, 0.4);
}

button:active {
    transform: translateY(0);
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.85;
}

/* brilho varrendo (shine sweep) */
button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s var(--ease-out);
}

button:hover::after {
    left: 130%;
}

.btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-slow 0.7s linear infinite;
}

button.loading .btn-label {
    display: none;
}

button.loading .btn-spinner {
    display: block;
}

.feedback {
    margin-top: 14px;
    font-size: 0.92rem;
    text-align: center;
    font-weight: 600;
    min-height: 1.4em;
}

.feedback.success-anim {
    animation: pop-in 0.5s var(--ease-out);
}

/* indicador de scroll */
.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.75;
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    position: relative;
}

.scroll-mouse::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    border-radius: 4px;
    background: var(--amarelo);
    animation: scroll-dot 1.6s ease-in-out infinite;
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
    background: linear-gradient(90deg, var(--amarelo), var(--rosa), var(--verde), var(--amarelo));
    background-size: 300% 100%;
    animation: gradient-shift 12s ease infinite;
    overflow: hidden;
    padding: 14px 0;
    position: relative;
    z-index: 3;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    width: max-content;
    animation: marquee 26s linear infinite;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.sep {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   SEÇÕES GENÉRICAS
   ============================================================ */

.section {
    padding: 88px 0;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
    position: relative;
}

.section-head::before,
.section-head::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.section-head::before {
    width: 16px;
    height: 16px;
    top: -16px;
    left: 6%;
    background: var(--amarelo);
    border-radius: 50%;
    opacity: 0.55;
    animation: float-a 9s ease-in-out infinite alternate;
}

.section-head::after {
    content: "✦";
    right: 4%;
    top: -22px;
    font-size: 1.3rem;
    color: var(--rosa);
    opacity: 0.5;
    animation: float-b 11s ease-in-out infinite alternate-reverse;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--roxo);
    background: rgba(122, 51, 107, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--roxo);
    margin-bottom: 12px;
    line-height: 1.15;
}

.section-head p {
    color: var(--muted);
    font-size: 1.05rem;
}

/* ============================================================
   CARDS DE ATIVIDADES
   ============================================================ */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    perspective: 1000px;
}

.activity-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: 0 6px 18px rgba(45, 45, 45, 0.07);
    border-top: 4px solid var(--amarelo);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
    transform-style: preserve-3d;
    will-change: transform;
}

.activity-card.reveal,
.day-card.reveal {
    transition: opacity 0.7s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(45, 45, 45, 0.14);
}

.activity-card:nth-child(3n + 1) { border-top-color: var(--amarelo); }
.activity-card:nth-child(3n + 2) { border-top-color: var(--rosa); }
.activity-card:nth-child(3n + 3) { border-top-color: var(--verde); }

.card-ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 18px;
    transition: transform 0.35s var(--ease-out) 0.05s;
}

.activity-card:hover .card-ico {
    transform: rotate(-8deg) scale(1.1);
}

.ico-danca { background: linear-gradient(135deg, var(--amarelo), #d99a2b); }
.ico-teatro { background: linear-gradient(135deg, var(--roxo), #a34f90); }
.ico-musica { background: linear-gradient(135deg, var(--rosa), #c93b4e); }
.ico-circo { background: linear-gradient(135deg, var(--verde), #2b9380); }
.ico-visuais { background: linear-gradient(135deg, #e38a4e, var(--rosa)); }
.ico-literatura { background: linear-gradient(135deg, #5b8ee3, var(--roxo)); }

.activity-card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.activity-card p {
    color: var(--muted);
    font-size: 0.96rem;
}

/* ============================================================
   DIVISORES DE ONDA SVG
   ============================================================ */

.wave {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    position: relative;
}

.wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

.wave .wave-a {
    fill: var(--bg-light);
    animation: wave-drift 26s ease-in-out infinite alternate;
}

.wave .wave-b {
    fill: #eef2f8;
    opacity: 0.9;
    animation: wave-drift 36s ease-in-out infinite alternate-reverse;
}

@keyframes wave-drift {
    from { transform: translateX(-2%); }
    to   { transform: translateX(2%); }
}

/* ============================================================
   PROVA SOCIAL / NÚMEROS
   ============================================================ */

.stats {
    background: linear-gradient(135deg, var(--roxo-escuro), var(--roxo));
    color: #fff;
}

.stats .section-head h2 {
    color: #fff;
}

.stats .section-head p {
    color: rgba(255, 255, 255, 0.85);
}

.stats .section-tag {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.stat {
    padding: 20px;
}

.stat-num {
    display: block;
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--amarelo);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================================
   VAGAS / URGÊNCIA
   ============================================================ */

.spots-card {
    background: #fff;
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 44px 40px;
    box-shadow: var(--shadow);
}

.spots-content h2 {
    color: var(--roxo);
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.spots-content p {
    color: var(--muted);
}

.spots-bar {
    height: 16px;
    background: #edf2f7;
    border-radius: 999px;
    overflow: hidden;
}

.spots-fill {
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--verde), var(--amarelo), var(--rosa));
    background-size: 200% 100%;
    animation: gradient-shift 4s ease infinite;
    transition: width 2s var(--ease-out);
}

.spots-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    font-size: 0.95rem;
    color: var(--muted);
}

.spots-meta strong {
    color: var(--text-color);
}

.spots-left strong {
    color: var(--rosa);
}

/* ============================================================
   PRÓXIMOS PASSOS
   ============================================================ */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-num {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--roxo), var(--rosa));
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(122, 51, 107, 0.3);
    transition: transform 0.35s var(--ease-out);
}

.step:hover .step-num {
    transform: rotate(-12deg) scale(1.08);
}

.step h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.step p {
    color: var(--muted);
    font-size: 0.97rem;
}

/* ============================================================
   PROGRAMAÇÃO (cards dos dias)
   ============================================================ */

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    perspective: 1000px;
}

.day-card {
    background: #fff;
    border-radius: var(--radius);
    border-top: 4px solid var(--amarelo);
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(45, 45, 45, 0.07);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
    transform-style: preserve-3d;
    will-change: transform;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.day-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(45, 45, 45, 0.14);
}

.day-card:nth-child(2) { border-top-color: var(--rosa); }
.day-card:nth-child(3) { border-top-color: var(--verde); }
.day-card:nth-child(4) { border-top-color: var(--amarelo); }
.day-card:nth-child(5) { border-top-color: var(--rosa); }

.day-name {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
}

.day-num {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--roxo);
    line-height: 1;
}

.day-slot {
    background: #f7fafc;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.day-slot.highlight {
    background: linear-gradient(135deg, rgba(122, 51, 107, 0.1), rgba(227, 78, 97, 0.1));
    color: var(--text-color);
    font-weight: 600;
}

.slot-time {
    font-weight: 800;
    color: var(--rosa);
    font-size: 0.95rem;
}

.libras-badge {
    align-self: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--verde);
    background: rgba(57, 183, 161, 0.12);
    padding: 3px 10px;
    border-radius: 999px;
}

/* ============================================================
   ABERTURA MUSICAL / CHORO DA GABIZO
   ============================================================ */

.choro-card {
    background: linear-gradient(135deg, #fff, #fdf3e7);
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 32px;
    align-items: center;
    padding: 48px 44px;
    box-shadow: var(--shadow);
    border-left: 6px solid var(--amarelo);
}

.choro-body h2 {
    color: var(--roxo);
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    margin-bottom: 12px;
}

.choro-body p {
    color: var(--muted);
    font-size: 1rem;
}

.master-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.master-chips span {
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--roxo);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    transition: transform 0.25s var(--ease-out);
}

.master-chips span:hover {
    transform: translateY(-3px) rotate(-2deg);
}

.choro-side {
    text-align: center;
    padding: 10px;
}

.choro-side .big-star {
    font-size: 3.2rem;
    color: var(--amarelo);
    display: inline-block;
    animation: spin-slow 14s linear infinite;
    margin-bottom: 12px;
}

.choro-side p {
    color: var(--muted);
    font-style: italic;
    font-size: 0.98rem;
    max-width: 30ch;
    margin: 0 auto;
}

/* ============================================================
   ACESSIBILIDADE
   ============================================================ */

.access-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 44px 40px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    box-shadow: var(--shadow);
}

.access-icon {
    width: 84px;
    height: 84px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--verde), #2b9380);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    transition: transform 0.4s var(--ease-out);
}

.access-card:hover .access-icon {
    transform: rotate(-8deg) scale(1.06);
}

.access-body h2 {
    color: var(--roxo);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.access-body p {
    color: var(--muted);
    font-size: 1.02rem;
}

.access-body strong {
    color: var(--verde);
}

/* ============================================================
   SERVIÇO
   ============================================================ */

.service-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 760px;
    margin: 0 auto;
    overflow: hidden;
}

.service-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 20px 28px;
    border-bottom: 1px solid #edf2f7;
    transition: background 0.25s;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background: rgba(247, 179, 80, 0.06);
}

.service-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    padding-top: 3px;
}

.service-value {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.02rem;
}

.semana-arte {
    max-width: 700px;
    margin: 36px auto 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.98rem;
    background: rgba(122, 51, 107, 0.06);
    padding: 22px 30px;
    border-radius: 14px;
}

.semana-arte strong {
    color: var(--roxo);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
    background: #fff;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1.5px solid #edf2f7;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.open {
    border-color: rgba(57, 183, 161, 0.5);
    box-shadow: 0 8px 24px rgba(45, 45, 45, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.02rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    text-align: left;
    box-shadow: none;
}

.faq-question:hover {
    box-shadow: none;
    transform: none;
}

.faq-question::after {
    display: none;
}

.faq-icon {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--roxo);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.35s var(--ease-out), background 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--verde);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-out);
}

.faq-answer p {
    padding: 0 22px 18px;
    color: var(--muted);
    font-size: 0.98rem;
}

/* ============================================================
   CTA FINAL
   ============================================================ */

.final-cta {
    text-align: center;
    background:
        radial-gradient(120% 100% at 50% 0%, rgba(122, 51, 107, 0.08), transparent 60%),
        var(--bg-light);
}

.final-cta-inner h2 {
    color: var(--roxo);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 12px;
}

.final-cta-inner p {
    color: var(--muted);
    font-size: 1.08rem;
    margin-bottom: 28px;
}

.btn-final {
    display: inline-block;
    padding: 16px 44px;
    background: linear-gradient(135deg, var(--rosa), #c93b4e);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s var(--ease-out), box-shadow 0.3s;
}

.btn-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(227, 78, 97, 0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer-logos {
    background-color: #fff;
    padding: 36px 0;
    border-top: 2px solid #edf2f7;
    text-align: center;
}

.logos-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 16px;
}

.logos-img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.credits {
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--muted);
}

/* ============================================================
   ANIMAÇÕES / REVEAL ON SCROLL
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: var(--delay, 0ms);
    will-change: opacity, transform;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* variantes de entrada (direções diferentes) */
.reveal-left {
    transform: translateX(-42px);
}

.reveal-right {
    transform: translateX(42px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal-left.reveal-visible,
.reveal-right.reveal-visible,
.reveal-scale.reveal-visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

@keyframes pop-in {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

@keyframes spin-border {
    to { --border-angle: 360deg; }
}

@keyframes pulse-num {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.09); }
    100% { transform: scale(1); }
}

.stat-num.pulsed {
    animation: pulse-num 0.6s var(--ease-out);
}

@keyframes float-a {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(40px, -30px, 0) scale(1.08); }
}

@keyframes float-b {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(-40px, 30px, 0) scale(0.94); }
}

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

@keyframes gradient-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes scroll-dot {
    0%   { transform: translate(-50%, 0); opacity: 1; }
    70%  { transform: translate(-50%, 14px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 0; }
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 64px 0 96px;
    }

    .scroll-hint {
        display: none;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .spots-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 26px;
    }

    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .choro-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 34px 26px;
    }

    .choro-side {
        text-align: left;
    }

    .choro-side p {
        margin: 0;
        max-width: none;
    }
}

@media (max-width: 560px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .hero-title .word {
        display: inline-block;
    }

    .form-card {
        padding: 28px 22px;
    }

    .section {
        padding: 64px 0;
    }

    .spots-meta {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .countdown {
        gap: 6px;
    }

    .countdown-unit {
        min-width: 52px;
        padding: 10px;
    }

    .access-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 34px 24px;
    }

    .access-icon {
        margin: 0 auto;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 18px 22px;
    }

    .section-head::before,
    .section-head::after {
        display: none;
    }
}

/* ============================================================
   ACESSIBILIDADE — reduz movimento
   ============================================================ */

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

    .reveal {
        opacity: 1;
        transform: none;
    }

    .reveal-left, .reveal-right, .reveal-scale {
        transform: none;
    }

    .badge, .word, .hero-kicker, .hero-sub, .hero-highlights li, .cta-secondary {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero-content, .form-card {
        translate: none;
        transition: none;
    }
}