/* ═══════════════════════════════════════════════════════════════
   EVENTO — landing de evento (Pilates, Café & Pintura de Taças)
   Segue a paleta Flow: cobre sobre creme, com hero escuro.
   ═══════════════════════════════════════════════════════════════ */

.evt {
    --evt-cream:  #F2EDE4;
    --evt-deep:   #E8E0D2;
    --evt-ink:    #16140F;
    --evt-soft:   #3A352B;
    --evt-copper: #B26A48;
    --evt-copper-deep: #8C4F33;
    --evt-sage:   #7A8674;
    background: var(--evt-cream);
    color: var(--evt-ink);
}

.evt-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #E0C4A8;
    margin-bottom: 18px;
}
.evt-eyebrow--dark { color: var(--evt-copper); }

.evt-h2 {
    font-size: clamp(1.75rem, 3.6vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0 0 20px;
    color: var(--evt-ink);
}
.evt-h2 em { font-style: italic; color: var(--evt-copper); font-weight: 700; }
.evt-h2--light { color: var(--evt-cream); }
.evt-h2--light em { color: #E0C4A8; }

/* ── BOTÕES ─────────────────────────────────────────────────── */
.evt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--evt-copper), #D89B6E);
    color: #FFF;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}
.evt-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(178,106,72,.38); }
.evt-btn:disabled { opacity: .6; cursor: wait; transform: none; }
.evt-btn--hero { font-size: 1.05rem; padding: 17px 36px; }
.evt-btn--full { width: 100%; margin-top: 6px; }
.evt-btn--ghost {
    background: transparent;
    border: 1px solid rgba(242,237,228,.4);
    color: var(--evt-cream);
}
.evt-btn--ghost:hover { background: rgba(242,237,228,.08); box-shadow: none; }

/* ── HERO ───────────────────────────────────────────────────── */
.evt-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.evt-hero__bg { position: absolute; inset: 0; z-index: 0; }
.evt-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.evt-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(22,20,15,.55) 0%,
        rgba(22,20,15,.70) 45%,
        rgba(22,20,15,.88) 100%);
}
.evt-hero__inner { position: relative; z-index: 2; padding: 110px 0 80px; color: var(--evt-cream); }

.evt-hero__title {
    font-size: clamp(2.4rem, 6.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 0 0 20px;
    color: #FFF;
}
.evt-hero__title em {
    display: block;
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, #D89B6E, #EFD4B4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.evt-hero__sub {
    font-size: clamp(1rem, 2vw, 1.18rem);
    max-width: 560px;
    margin: 0 auto 32px;
    color: rgba(242,237,228,.88);
    line-height: 1.6;
}

.evt-hero__date {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 14px 26px;
    margin-bottom: 32px;
    border: 1px solid rgba(224,196,168,.35);
    border-radius: 14px;
    background: rgba(22,20,15,.35);
    backdrop-filter: blur(6px);
}
.evt-hero__date-num {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    color: #E0C4A8;
}
.evt-hero__date-txt { text-align: left; line-height: 1.35; }
.evt-hero__date-txt strong {
    display: block;
    font-size: 1rem;
    text-transform: capitalize;
    color: var(--evt-cream);
}
.evt-hero__date-txt {
    font-size: .84rem;
    color: rgba(242,237,228,.72);
}
.evt-hero__spots {
    margin: 14px 0 0;
    font-size: .84rem;
    color: rgba(242,237,228,.62);
}
.evt-badge {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
}
.evt-badge--full { background: rgba(220,38,38,.2); border: 1px solid rgba(252,165,165,.5); color: #FCA5A5; }

/* ── O QUE INCLUI ───────────────────────────────────────────── */
.evt-includes { background: var(--evt-deep); padding: 46px 0; }
.evt-includes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 26px;
}
.evt-include {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    color: var(--evt-ink);
}
.evt-include svg { color: var(--evt-copper); margin-bottom: 4px; }
.evt-include strong { font-size: 1rem; font-weight: 700; }
.evt-include span { font-size: .84rem; color: var(--evt-soft); opacity: .85; line-height: 1.45; }

/* ── SOBRE ──────────────────────────────────────────────────── */
.evt-about { padding: 88px 0; background: var(--evt-cream); }
.evt-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.evt-about__text p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--evt-soft);
    margin: 0 0 16px;
}
.evt-about__text strong { color: var(--evt-ink); }
.evt-about__signature {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(22,20,15,.12);
}
.evt-about__signature strong { display: block; font-size: 1rem; color: var(--evt-ink); }
.evt-about__signature span { font-size: .82rem; color: var(--evt-soft); opacity: .8; }

.evt-about__gallery { display: grid; gap: 16px; }
.evt-about__gallery { grid-template-columns: 1fr 1fr; }
.evt-about__gallery img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(22,20,15,.12);
}

/* ── LOCAL ──────────────────────────────────────────────────── */
.evt-place { background: var(--evt-ink); color: var(--evt-cream); padding: 88px 0; }
.evt-place__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.evt-place__addr { font-size: 1.02rem; color: #E0C4A8; margin: 0 0 14px; }
.evt-place__desc { font-size: 1rem; line-height: 1.7; color: rgba(242,237,228,.78); margin: 0 0 26px; }
.evt-place__img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 45%;
    border-radius: 14px;
}

/* ── FORMULÁRIO ─────────────────────────────────────────────── */
.evt-form-section { background: var(--evt-deep); padding: 88px 0; }
.evt-form-wrap { max-width: 680px; }
.evt-form-card {
    background: #FFF;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 12px 44px rgba(22,20,15,.10);
}
.evt-form-card--full { text-align: center; }
.evt-form-card--full p { color: var(--evt-soft); margin: 0 0 24px; line-height: 1.65; }
.evt-form-card__lead { color: var(--evt-soft); margin: 0 0 26px; line-height: 1.6; font-size: .96rem; }
.evt-form-card__small {
    margin: 16px 0 0;
    font-size: .82rem;
    color: var(--evt-soft);
    opacity: .8;
    text-align: center;
    line-height: 1.5;
}

.evt-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.evt-field { display: flex; flex-direction: column; }
.evt-field label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--evt-soft);
    margin-bottom: 6px;
}
.evt-field input {
    padding: 12px 14px;
    border: 1px solid var(--evt-deep);
    border-radius: 9px;
    font-family: inherit;
    font-size: .96rem;
    color: var(--evt-ink);
    background: #FFF;
    transition: border-color .16s ease, box-shadow .16s ease;
}
.evt-field input:focus {
    outline: none;
    border-color: var(--evt-copper);
    box-shadow: 0 0 0 3px rgba(178,106,72,.12);
}
.evt-hint { font-size: .74rem; color: var(--evt-soft); opacity: .7; margin-top: 5px; }

.evt-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 26px 0 18px;
    padding: 16px 20px;
    background: var(--evt-cream);
    border-radius: 10px;
}
.evt-total span { font-size: .88rem; color: var(--evt-soft); font-weight: 600; }
.evt-total strong { font-size: 1.5rem; font-weight: 800; color: var(--evt-copper); }

.evt-error {
    padding: 13px 16px;
    margin-bottom: 18px;
    background: rgba(220,38,38,.08);
    border: 1px solid rgba(220,38,38,.28);
    border-radius: 9px;
    color: #B91C1C;
    font-size: .9rem;
    line-height: 1.5;
}
.evt-error[hidden] { display: none; }

/* ── RESPONSIVO ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .evt-about__inner,
    .evt-place__inner { grid-template-columns: 1fr; gap: 36px; }
    .evt-about__gallery { grid-template-columns: 1fr 1fr; }
    .evt-about__gallery img { height: 190px; }
    .evt-place__img img { height: 260px; }
}

@media (max-width: 560px) {
    .evt-hero { min-height: 82vh; }
    .evt-hero__inner { padding: 90px 0 64px; }
    .evt-hero__date { gap: 12px; padding: 12px 20px; }
    .evt-hero__date-num { font-size: 2.1rem; }
    .evt-about, .evt-place, .evt-form-section { padding: 60px 0; }
    .evt-form-card { padding: 26px 22px; }
    .evt-about__gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
    .evt-about__gallery img { height: 200px; }
    .evt-place__img img { height: 300px; }
    .evt-includes__grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}

.evt-subhead {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--evt-copper);
    margin: 26px 0 12px;
    padding-top: 20px;
    border-top: 1px solid var(--evt-deep);
}

.evt-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* ── Blocos alternados (aula / pintura) ─────────────────────── */
.evt-about--alt { background: var(--evt-deep); }

.evt-about__inner--reverse .evt-about__media { order: -1; }

.evt-about__media img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    box-shadow: 0 10px 34px rgba(22,20,15,.14);
}

.evt-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}
.evt-list li {
    position: relative;
    padding: 7px 0 7px 26px;
    font-size: .95rem;
    color: var(--evt-soft);
    line-height: 1.5;
}
.evt-list li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 15px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--evt-copper);
}

@media (max-width: 900px) {
    .evt-about__inner--reverse .evt-about__media { order: 0; }
    .evt-about__media img { height: 320px; }
}
@media (max-width: 560px) {
    .evt-about__media img { height: 260px; }
}

/* ── Trio de vídeos da aula ─────────────────────────────────── */
.evt-about__media--videos {
    display: grid;
    overflow: hidden;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    height: 460px;
}
.evt-vid {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;   /* sem isso, a altura intrínseca do vídeo estoura a linha */
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    background: var(--evt-ink);
    box-shadow: 0 8px 26px rgba(22,20,15,.14);
    display: block;
}
/* O primeiro ocupa a coluna da esquerda inteira */
.evt-vid--tall { grid-row: span 2; }

@media (max-width: 900px) {
    .evt-about__media--videos { height: 340px; gap: 10px; }
}
@media (max-width: 560px) {
    .evt-about__media--videos { height: 300px; gap: 8px; }
    .evt-vid { border-radius: 10px; }
}
@media (prefers-reduced-motion: reduce) {
    .evt-vid { display: none; }
    .evt-about__media--videos {
        background-image: url('/site/assets/img/evento/flow4-poster.jpg');
        background-size: cover;
        background-position: center;
        border-radius: 12px;
    }
}