

/* ─── RESET & TOKENS ─────────────────────────────────────── */
:root {
    --wine:        #7A0000;
    --wine-dk:     #560000;
    --wine-md:     #8B1A1A;
    --wine-lt:     #B04040;
    --cream:       #F5F0EB;
    --cream-dk:    #EDE6DE;
    --ivory:       #FDFAF7;
    --white:       #FFFFFF;
    --black:       #120D0D;
    --ink:         #1E1616;
    --muted:       #7A6B6B;
    --border:      rgba(122, 0, 0, 0.12);

    --ff-display: 'Times New Roman', Times, Georgia, serif;
    --ff-body:    'Open Sans', sans-serif;

    --fs-hero:  clamp(2.8rem, 7vw + 0.5rem, 5.2rem);
    --fs-xl:    clamp(2.2rem, 4vw + 0.5rem, 3.6rem);
    --fs-lg:    clamp(1.6rem, 2vw + 0.5rem, 2.4rem);
    --fs-md:    clamp(1.05rem, 1vw + 0.4rem, 1.2rem);
    --fs-sm:    clamp(0.875rem, 0.5vw + 0.6rem, 1rem);
    --fs-xs:    0.75rem;

    --ease:        cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in:     cubic-bezier(0.4, 0, 1, 1);
    --t-std:       0.55s cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast:      0.3s cubic-bezier(0.16, 1, 0.3, 1);

    --r-sm:  6px;
    --r-md:  16px;
    --r-lg:  32px;
    --r-xl:  48px;
    --r-pill: 999px;

    --shadow-wine: 0 20px 60px rgba(122, 0, 0, 0.25);
    --shadow-dk:   0 32px 80px rgba(18, 13, 13, 0.3);
    --shadow-soft: 0 8px 40px rgba(18, 13, 13, 0.08);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--ff-body);
    font-size: var(--fs-md);
    line-height: 1.65;
    color: var(--ink);
    background-color: var(--ivory);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
blockquote, q { quotes: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-display);
    font-weight: 700;
    line-height: 1.08;
}

/* ─── SKIP LINK ──────────────────────────────────────────── */
.skip-link {
    position: absolute; top: -100px; left: 0;
    padding: 16px 24px;
    background: var(--wine);
    color: var(--white);
    font-size: var(--fs-xs);
    z-index: 9999;
    transition: top var(--t-fast);
}
.skip-link:focus { top: 0; }

/* ─── CONTAINER ─────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 48px);
}

/* ─── ICONS ─────────────────────────────────────────────── */
.icon    { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.icon-sm { width: 1rem;  height: 1rem; flex-shrink: 0; }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px; /* Adicionado padding base para evitar achatamento */
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: var(--fs-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    white-space: nowrap;
    transition: transform var(--t-std), box-shadow var(--t-std), background-color var(--t-std), color var(--t-std);
    will-change: transform;
}

.btn--primary {
    background-color: var(--wine);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(122, 0, 0, 0.28);
}
.btn--primary:hover {
    background-color: var(--wine-dk);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(122, 0, 0, 0.38);
}

.btn--white {
    background-color: var(--white);
    color: var(--wine-dk);
}
.btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
}

.btn--outline {
    background-color: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn--outline:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
}

.btn--sm  { padding: 10px 22px; font-size: 0.7rem; }
.btn--lg  { padding: 18px 48px; font-size: 0.8rem; }
.btn--full, .btn--block { width: 100%; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.scroll-reveal[data-origin="left"]  { transform: translateX(-40px); }
.scroll-reveal[data-origin="right"] { transform: translateX(40px); }
.scroll-reveal[data-origin="bottom"]{ transform: translateY(48px); }
.scroll-reveal[data-scale="true"]   { transform: scale(0.97) translateY(24px); }
.scroll-reveal.active {
    opacity: 1;
    transform: none;
}

/* ─── HEADER ─────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 88px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: height var(--t-std), background-color var(--t-std), box-shadow var(--t-std);
}

.header--scrolled {
    height: 68px;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 32px rgba(0,0,0,0.25);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header__logo-link {
    font-family: var(--ff-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-block: 120px 100px;
    background-color: var(--black);
    color: var(--white);
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(18, 13, 13, 0.97) 0%,
            rgba(86, 0, 0, 0.55) 55%,
            rgba(18, 13, 13, 0.25) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 820px;
}

.hero__subtitle {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
    transition-delay: 0.05s;
}

.hero__title {
    font-size: var(--fs-hero);
    font-family: var(--ff-display);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 36px;
    transition-delay: 0.1s;
}

.hero__title--highlight {
    display: block;
    font-weight: 700;
    color: var(--white);
}

.hero__description {
    font-size: clamp(1rem, 1.4vw + 0.4rem, 1.2rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.72);
    max-width: 600px;
    margin-bottom: 52px;
    transition-delay: 0.15s;
}

.hero__cta-group {
    transition-delay: 0.2s;
    margin-bottom: 80px;
}

.hero__footer {
    transition-delay: 0.25s;
}

.hero__meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero__meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.42);
}

.hero__meta-item .icon { opacity: 0.4; }

/* ─── PURPOSE ────────────────────────────────────────────── */
.purpose {
    position: relative;
    background-color: var(--ivory);
}

.purpose__dark-bg {
    background-color: var(--wine-dk);
    color: var(--white);
    padding-block: 140px 220px;
}

.purpose__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: flex-start;
}

.purpose__title {
    font-size: var(--fs-xl);
    line-height: 1.08;
    margin-bottom: 36px;
    font-weight: 400;
}
.purpose__title strong { font-weight: 700; }

.purpose__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.82);
}
.purpose__text strong { color: var(--white); font-weight: 700; }

.purpose__img-frame {
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-dk);
}
.purpose__img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease);
}
.purpose__img-frame:hover .purpose__img { transform: scale(1.04); }

/* ── Quote Card ── */
.purpose__quote-container {
    position: relative;
    margin-top: -130px;
    z-index: 5;
    padding-bottom: 0;
}

.purpose__quote-card {
    background-color: var(--white);
    border-radius: var(--r-md);
    padding: 72px clamp(32px, 5vw, 80px);
    box-shadow: var(--shadow-soft);
    border-bottom: 4px solid var(--wine);
}

.purpose__quote {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 2.5vw + 0.3rem, 2.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: 28px;
}

.purpose__cite {
    font-family: var(--ff-body);
    font-size: 0.85rem;
    font-style: normal;
    letter-spacing: 0.15em;
    color: var(--wine);
    font-weight: 700;
    text-transform: uppercase;
}

/* ─── ALIGNMENT ──────────────────────────────────────────── */
.alignment {
    background-color: var(--white);
    padding-block: 140px;
}

.alignment__grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 80px;
    align-items: center;
}

.alignment__media {
    border-radius: var(--r-md);
    overflow: hidden;
    height: 560px;
    box-shadow: var(--shadow-soft);
}
.alignment__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.alignment__media:hover .alignment__img { transform: scale(1.04); }

.alignment__content { display: flex; flex-direction: column; }

.alignment__p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 40px;
}

.alignment__callout {
    border-left: 5px solid var(--wine);
    padding-left: 28px;
    margin-block: 36px;
}
.alignment__callout p {
    font-family: var(--ff-display);
    font-size: clamp(1.6rem, 2.5vw + 0.3rem, 2.4rem);
    font-weight: 700;
    color: var(--wine-dk);
    line-height: 1.15;
}

.alignment__details p {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 18px;
}

.alignment__conclusion {
    margin-top: 100px;
    padding-top: 64px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-family: var(--ff-display);
    font-size: clamp(1.2rem, 1.8vw + 0.3rem, 1.7rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--ink);
    max-width: 800px;
    margin-inline: auto;
}
.alignment__conclusion strong { color: var(--wine); font-weight: 700; }

/* ─── TRANSFORM ──────────────────────────────────────────── */
.transform {
    padding-block: 100px 140px;
    background-color: var(--cream);
}

.transform__card {
    background-color: var(--wine-dk);
    border-radius: var(--r-xl);
    padding: 96px clamp(32px, 6vw, 80px);
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-wine);
    position: relative;
    overflow: hidden;
}

.transform__card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.transform__card::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.transform__heading {
    font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem);
    font-weight: 400;
    margin-bottom: 56px;
    line-height: 1.15;
}
.transform__heading span { display: block; }
.transform__heading strong { font-weight: 700; }

.transform__list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.transform__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 13px 26px;
    border-radius: var(--r-pill);
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    transition: background-color var(--t-fast), border-color var(--t-fast);
}
.transform__tag:hover {
    background-color: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.22);
}

.transform__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ─── EXPERIENCE ─────────────────────────────────────────── */
.experience {
    background-color: var(--wine-dk);
    color: var(--white);
    padding-block: 140px;
    overflow: hidden;
}

.experience__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-end;
    margin-bottom: 96px;
}

.experience__title {
    font-size: clamp(2.8rem, 5vw + 0.5rem, 4.2rem);
    font-family: var(--ff-display);
    font-weight: 400;
    line-height: 1.05;
}

.experience__list {
    border-left: 1px solid rgba(255,255,255,0.18);
    padding-left: 44px;
}

.experience__item {
    font-size: 1.2rem;
    margin-bottom: 22px;
    position: relative;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}
.experience__item:last-child { margin-bottom: 0; }

.experience__item::before {
    content: '';
    position: absolute;
    left: -49px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px; height: 7px;
    background-color: var(--wine-lt);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(176, 64, 64, 0.25);
}

/* ── Gallery ── */
.experience__gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: clamp(480px, 55vw, 720px);
    margin-top: 40px;
    position: relative;
}

.gallery__item {
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border-radius: var(--r-lg);
    transition: all var(--t-std);
}

.gallery__item--side {
    flex: 0 0 28%;
    height: 75%;
    z-index: 1;
    opacity: 1; 
    box-shadow: 0 16px 40px rgba(18, 13, 13, 0.2);
}

.gallery__item--side:first-child { margin-right: -10%; }
.gallery__item--side:last-child { margin-left: -10%; }

.gallery__item--center {
    flex: 0 0 38%;
    height: 95%;
    z-index: 2; 
    box-shadow: 0 32px 80px rgba(18, 13, 13, 0.5); 
}

.gallery__item--center::before,
.gallery__item--center::after {
    display: none !important;
}

img.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.9s var(--ease);
}
.gallery__item:hover img.gallery__img { transform: scale(1.05); }

/* ─── TICKETS ────────────────────────────────────────────── */
.tickets {
    padding-block: 140px;
    background-color: var(--cream);
    text-align: center;
}

.tickets__header { margin-bottom: 72px; }

.tickets__main-title {
    font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem);
    font-weight: 400;
    line-height: 1.2;
}
.tickets__main-title strong { font-weight: 700; }

.tickets__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 960px;
    margin-inline: auto;
}

.ticket-card {
    background-color: var(--white);
    padding: 56px 52px;
    border-radius: var(--r-lg);
    text-align: left;
    border: 1.5px solid rgba(122, 0, 0, 0.08);
    box-shadow: var(--shadow-soft);
    transition: transform var(--t-std), box-shadow var(--t-std), border-color var(--t-std);
    position: relative;
    overflow: hidden;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wine-dk), var(--wine-lt));
    opacity: 0;
    transition: opacity var(--t-fast);
}

.ticket-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(18, 13, 13, 0.12);
    border-color: rgba(122, 0, 0, 0.2);
}
.ticket-card:hover::before { opacity: 1; }

.ticket-card__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--wine);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding: 6px 14px;
    background-color: rgba(122, 0, 0, 0.07);
    border-radius: var(--r-pill);
}

.ticket-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--ink);
}

.ticket-card__details { margin-bottom: 44px; }

.ticket__line {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.ticket__line .icon-sm { color: var(--wine); opacity: 0.7; }

.ticket-card__price {
    font-family: var(--ff-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 36px;
    line-height: 1;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
    background: linear-gradient(135deg, var(--wine-dk) 0%, var(--wine) 100%);
    color: var(--white);
    padding-block: 80px 32px;
}

.footer__main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__logo-img {
    max-height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, filter;
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: transform var(--t-std), background-color var(--t-std), box-shadow var(--t-std);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__social-link:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer__section-title {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: 0.02em;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__list-item {
    font-size: 0.9rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--t-fast), transform var(--t-fast);
    display: inline-block;
}

.footer__link:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer__event {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__event-date {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

.footer__event-location {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

.footer__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.footer__cta {
    max-width: fit-content;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
}

.footer__copy {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.6);
}

.footer__credit {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.6);
}

.footer__social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

/* ─── FLOATING BUTTON ───────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    /* Gradiente em tons vermelhos mais escuros */
    background: linear-gradient(135deg, #c62828 0%, #8e0000 100%);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(142, 0, 0, 0.4);
    cursor: pointer;
    
    /* Estados base definidos como estado final visível para evitar conflitos */
    opacity: 1;
    transform: scale(1);
    
    /* Transições suaves e responsivas */
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                background 0.3s ease;
                
    /* Animação de entrada combinada com pulso */
    animation: float-entrance 0.8s cubic-bezier(0.25, 1, 0.5, 1),
               pulse-dark-red 2s 0.8s infinite cubic-bezier(0.66, 0, 0, 1);
               
    /* Melhora performance de animação */
    will-change: transform, box-shadow, opacity;
}

.whatsapp-float:hover {
    transform: scale(1.18);
    box-shadow: 0 14px 40px rgba(142, 0, 0, 0.65);
    background: linear-gradient(135deg, #d32f2f 0%, #a40000 100%);
    animation: pulse-dark-red-hover 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

/* Hover ativo - feedback tátil sem desaparecer */
.whatsapp-float:active {
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(142, 0, 0, 0.5);
    animation: none; /* Pausa a animação para o clique ser sólido */
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #FFFFFF;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none; /* Evita conflitos de interação no SVG */
}

/* Interação extra no ícone com rotação suave */
.whatsapp-float:hover svg {
    transform: rotate(15deg) scale(1.08);
}

/* Animação de pulso para tons mais escuros */
@keyframes pulse-dark-red {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(198, 40, 40, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(198, 40, 40, 0);
    }
}

/* Animação de pulso sutil para hover */
@keyframes pulse-dark-red-hover {
    0% {
        box-shadow: 0 14px 40px rgba(142, 0, 0, 0.65), 0 0 0 0 rgba(211, 47, 47, 0.6);
    }
    70% {
        box-shadow: 0 14px 40px rgba(142, 0, 0, 0.65), 0 0 0 12px rgba(211, 47, 47, 0);
    }
    100% {
        box-shadow: 0 14px 40px rgba(142, 0, 0, 0.65), 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

/* Animação de entrada corrigida (começa do zero e termina no estado base da classe) */
@keyframes float-entrance {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .purpose__grid,
    .alignment__grid,
    .experience__top {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .purpose__img { height: 420px; }
    .alignment__media { height: 420px; }

    .purpose__quote-container { margin-top: -80px; }
    .purpose__quote-card { padding: 48px 28px; }

    .experience__gallery {
        height: clamp(400px, 70vw, 560px);
    }
    .gallery__item--side { flex: 0 0 30%; height: 75%; }
    .gallery__item--center { flex: 0 0 45%; height: 90%; }
    .gallery__item--side:first-child { margin-right: -12%; }
    .gallery__item--side:last-child { margin-left: -12%; }

    .tickets__grid { grid-template-columns: 1fr; max-width: 520px; }
    .ticket-card { padding: 44px 36px; }

    .transform__card { padding: 64px 28px; border-radius: var(--r-lg); }
    .transform__list { gap: 12px; }
    
    /* Configuração de botões empilhados em telas menores */
    .transform__actions { 
        flex-direction: column; 
        align-items: stretch; /* Estica os botões horizontalmente */
        gap: 16px; 
        width: 100%;
    }
    .transform__actions .btn { width: 100%; }

    .hero__cta-group { margin-bottom: 48px; }
    
    /* Footer responsivo */
    .footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    /* Ajustes refinados no Header Mobile */
    .header { height: 76px; }
    .header--scrolled { height: 66px; }
    .header__logo-link { font-size: 1.3rem; }
    .header__container { padding-inline: 20px; }
    /* Botão CTA do Header um pouco menor para não brigar com o logo */
    .header__cta { padding: 10px 16px; font-size: 0.65rem; letter-spacing: 0.1em; }

    .hero { padding-block: 100px 72px; }
    .hero__description { font-size: 1rem; }

    .purpose__dark-bg { padding-block: 100px 180px; }

    .alignment { padding-block: 96px; }
    .alignment__conclusion { margin-top: 72px; padding-top: 48px; }

    .experience { padding-block: 96px; }
    .experience__top { gap: 40px; margin-bottom: 64px; }

    .experience__gallery {
        height: clamp(340px, 100vw, 460px);
    }
    .gallery__item { border-radius: var(--r-md); }
    .gallery__item--side { flex: 0 0 35%; height: 75%; }
    .gallery__item--center { flex: 0 0 55%; height: 100%; }
    
    .gallery__item--side:first-child { margin-right: -18%; }
    .gallery__item--side:last-child { margin-left: -18%; }

    .tickets { padding-block: 96px; }
    .tickets__grid { grid-template-columns: 1fr; }
    .ticket-card { padding: 36px 24px; }

    .btn--lg { padding: 16px 36px; }
    
    /* Botão flutuante WhatsApp menor em mobile */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    /* Footer mobile */
    .footer {
        padding-block: 64px 24px;
    }
    
    .footer__main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__brand {
        grid-column: 1;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* ─── HOVER LIFT ─────────────────────────────────────────── */
.img-hover-effect { transition: transform 0.6s var(--ease); }
.img-hover-effect:hover { transform: translateY(-6px); }

/* ─── SELECTION ──────────────────────────────────────────── */
::selection {
    background-color: var(--wine);
    color: var(--white);
}
