/* =====================================================================
   FONT FACES — New Spirit (títulos)
===================================================================== */
@font-face {
    font-family: 'New Spirit';
    src: url('public/fonte/New%20Spirit%20Family/fonnts.com-New-Spirit-Semi-Bold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* =====================================================================
   CSS VARIABLES — paleta CONTEUDO LUTS
===================================================================== */
:root {
    --bg-base:    #0a0a0a;
    --bg-alt:     #0f0f0f;
    --primary:    #9b2045;
    --accent:     #d63a6e;
    --card-bg:    #7a1a35;
    --text:       #ffffff;
    --text-muted: rgba(255, 255, 255, 0.75);
    --border:     rgba(155, 32, 69, 0.4);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-base);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* =========================
   TYPOGRAPHY UTILITIES
   ========================= */
.bebas {
    font-family: 'New Spirit', serif;
    text-transform: lowercase;
    letter-spacing: 0;
    line-height: 1.05;
}

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

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

/* =========================
   LOGO
   ========================= */
.logo-img {
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 24px rgba(155, 32, 69, 0.45));
    display: block;
}

.logo-hero {
    max-height: 90px;
    max-width: 260px;
    margin-bottom: 28px;
}

.logo-footer {
    max-height: 70px;
    max-width: 200px;
    margin: 0 auto 12px;
}

/* =========================
   CTA BUTTON
   ========================= */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--text);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 18px 48px;
    border-radius: 50px;
    transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 22px 4px rgba(155, 32, 69, 0.5);
}

.btn-cta:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 0 32px 8px rgba(155, 32, 69, 0.7);
}

.btn-cta.lg {
    font-size: 1.125rem;
    padding: 22px 60px;
}

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

.btn-outline:hover {
    background: rgba(155, 32, 69, 0.08);
    box-shadow: none;
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--bg-base);
    background-image:
        linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.55) 50%, rgba(10, 10, 10, 0.85) 100%),
        radial-gradient(circle at 80% 70%, rgba(155, 32, 69, 0.55) 0%, transparent 60%),
        radial-gradient(circle at 20% 30%, rgba(122, 26, 53, 0.4) 0%, transparent 50%),
        url('public/depois/horizontal/4.webp');
    background-size: auto, auto, auto, cover;
    background-position: center, center, center, center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px;
    background: linear-gradient(180deg,
        rgba(10, 10, 10, 0) 0%,
        rgba(10, 10, 10, 0.5) 45%,
        rgba(10, 10, 10, 0.85) 75%,
        var(--bg-base) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-supertitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 5rem;
    color: var(--text);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background-image: url('public/depois/horizontal/1.webp');
    background-size: cover;
    background-position: center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.75), 0 0 40px rgba(155, 32, 69, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-video:hover { transform: scale(1.02); }

.play-icon {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 40px rgba(155, 32, 69, 0.45);
    animation: pulse-glow 2.2s infinite;
}

.play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 0 18px 28px;
    border-color: transparent transparent transparent var(--text);
    margin-left: 6px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(155, 32, 69, 0.7), 0 0 20px 4px rgba(155, 32, 69, 0.45);
    }
    50% {
        box-shadow: 0 0 0 18px rgba(155, 32, 69, 0), 0 0 32px 8px rgba(155, 32, 69, 0.65);
    }
}

/* =========================
   SECTION GENERIC
   ========================= */
.section { padding: 100px 0; }

.section-alt { background: var(--bg-alt); }

.section-title {
    font-size: 4.5rem;
    color: var(--text);
    margin-bottom: 24px;
}

.section-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 14px;
    text-align: center;
}

/* =========================
   MAGIC SECTION
   ========================= */
.magic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.magic-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 24px 0 36px;
    line-height: 1.7;
    max-width: 480px;
}

/* =========================
   BEFORE / AFTER SLIDER
   ========================= */
.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    cursor: ew-resize;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(155, 32, 69, 0.15);
}

.ba-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.ba-before {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--text);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.ba-handle-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    font-weight: bold;
    color: var(--bg-base);
    font-size: 1rem;
}

.ba-handle-btn::before {
    content: '◄ ►';
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.ba-label {
    position: absolute;
    top: 16px;
    font-family: 'New Spirit', serif;
    font-size: 0.95rem;
    letter-spacing: 0;
    text-transform: lowercase;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(0,0,0,0.6);
    color: var(--text);
    backdrop-filter: blur(6px);
    pointer-events: none;
    z-index: 3;
}

.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; }

.ba-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    color: var(--text);
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 30px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 5;
}

.ba-slider.touched .ba-hint { opacity: 0; }

/* =========================
   IMAGE BACKGROUNDS — ANTES / DEPOIS
   Horizontal: paisagem 16:9 / 16:10 (hero, galeria de comparações)
   Vertical:   retrato 3:4 / 4:5  (magic slider, learn, paint reveal)
   Os pares X.webp em antes/ e depois/ correspondem entre si.
   ========================= */
.h-antes-1  { background-image: url('public/antes/horizontal/1.webp'); }
.h-antes-2  { background-image: url('public/antes/horizontal/2.webp'); }
.h-antes-3  { background-image: url('public/antes/horizontal/3.webp'); }
.h-antes-4  { background-image: url('public/antes/horizontal/4.webp'); }
.h-antes-5  { background-image: url('public/antes/horizontal/5.webp'); }

.h-depois-1 { background-image: url('public/depois/horizontal/1.webp'); }
.h-depois-2 { background-image: url('public/depois/horizontal/2.webp'); }
.h-depois-3 { background-image: url('public/depois/horizontal/3.webp'); }
.h-depois-4 { background-image: url('public/depois/horizontal/4.webp'); }
.h-depois-5 { background-image: url('public/depois/horizontal/5.webp'); }

.v-antes-1  { background-image: url('public/antes/vertical/1.webp'); }
.v-antes-2  { background-image: url('public/antes/vertical/2.webp'); }
.v-antes-3  { background-image: url('public/antes/vertical/3.webp'); }

.v-depois-1 { background-image: url('public/depois/vertical/1.webp'); }
.v-depois-2 { background-image: url('public/depois/vertical/2.webp'); }
.v-depois-3 { background-image: url('public/depois/vertical/3.webp'); }

/* =========================
   BENEFITS CARDS
   ========================= */
.benefits { padding: 60px 0 100px; }

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

.benefit-card {
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(155, 32, 69, 0.05);
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
    background: rgba(155, 32, 69, 0.1);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(155, 32, 69, 0.4);
}

.benefit-card h3 {
    font-family: 'New Spirit', serif;
    font-size: 2rem;
    color: var(--text);
    letter-spacing: 0;
    text-transform: lowercase;
    line-height: 1.15;
}

/* =========================
   LEARN SECTION
   ========================= */
.learn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.learn-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.learn-image {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 0 1px var(--border);
}

.learn-image .split-before,
.learn-image .split-after {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background-size: cover;
    background-position: center;
}

.learn-image .split-before { left: 0; background-position: left center; }
.learn-image .split-after { right: 0; background-position: right center; }

.split-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255,255,255,0.7);
    transform: translateX(-50%);
}

.learn-text h2 {
    font-size: 3.75rem;
    margin-bottom: 16px;
}

.learn-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
}

/* =========================
   PRICING / PACKAGES (3 tiers)
   ========================= */
.packages {
    padding: 100px 0;
    background: var(--bg-alt);
    position: relative;
}

.packages-header {
    text-align: center;
    margin-bottom: 64px;
}

.packages-header h2 {
    font-size: 4rem;
    color: var(--text);
    margin-bottom: 16px;
}

.packages-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}

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

.package {
    position: relative;
    background: rgba(155, 32, 69, 0.06);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.package:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(214, 58, 110, 0.18);
}

.package-featured {
    background:
        radial-gradient(circle at 50% 100%, rgba(214, 58, 110, 0.35) 0%, transparent 60%),
        var(--card-bg);
    border: 1px solid var(--accent);
    box-shadow: 0 20px 60px rgba(155, 32, 69, 0.35);
}

.package-featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(180deg, var(--accent), transparent 60%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.package-badge {
    position: absolute;
    top: 32px;
    right: 32px;
    background: var(--primary);
    border: 1px solid var(--accent);
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.package-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
}

.package-price {
    font-family: 'New Spirit', serif;
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.package-price small {
    font-size: 1.4rem;
    opacity: 0.7;
    margin-right: 4px;
}

.package-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    min-height: 48px;
    line-height: 1.5;
}

.package .btn-cta {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 16px 24px;
    font-size: 0.85rem;
    box-shadow: none;
}

.package .btn-cta:hover {
    background: rgba(155, 32, 69, 0.18);
    border-color: var(--accent);
    box-shadow: none;
    filter: none;
}

.package-featured .btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    box-shadow: 0 0 22px 4px rgba(155, 32, 69, 0.5);
}

.package-featured .btn-cta:hover {
    filter: brightness(1.12);
    box-shadow: 0 0 32px 8px rgba(155, 32, 69, 0.7);
}

.package-divider {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 28px 0 16px;
    font-weight: 500;
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.package-features .check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(155, 32, 69, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    margin-top: 3px;
    color: var(--text);
}

.package-featured .package-features .check {
    background: var(--accent);
}

.packages-cta {
    text-align: center;
    margin-top: 48px;
}

.packages-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 0.95rem;
    border: 1px solid var(--border);
    padding: 14px 28px;
    border-radius: 50px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.packages-cta a:hover {
    background: rgba(155, 32, 69, 0.12);
    border-color: var(--accent);
}

/* =========================
   PRICING (HERO OFFER) — burgundy dark
   ========================= */
.pricing {
    background: var(--bg-base);
    color: var(--text);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(155, 32, 69, 0.32) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pricing-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-title {
    font-size: 3.6rem;
    color: var(--text);
    margin-bottom: 20px;
}

.pricing-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 8px;
}

.pricing-bullets {
    list-style: none;
    margin-top: 28px;
}

.pricing-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text);
    border-top: 1px solid var(--border);
}

.pricing-bullets li:first-child { border-top: none; }

.pricing-bullets .check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    margin-top: 2px;
}

/* iPhone mockup */
.iphone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.iphone {
    width: 280px;
    height: 580px;
    border-radius: 45px;
    background: #0a0a0a;
    padding: 12px;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.6),
        0 0 0 2px var(--border) inset,
        0 0 60px rgba(155, 32, 69, 0.25);
    transform: rotate(-12deg);
    position: relative;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 35px;
    background-image: url('public/depois/vertical/1.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.iphone-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.iphone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 28px;
    background: #0a0a0a;
    border-radius: 20px;
    z-index: 3;
}

.iphone-ui {
    position: absolute;
    inset: 0;
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 2;
}

.iphone-strip {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    height: 36px;
}

.iphone-strip:nth-child(2) { width: 70%; }
.iphone-strip:nth-child(3) { width: 90%; }

.iphone-tile {
    margin-top: auto;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    gap: 8px;
}

.iphone-tile-item {
    flex: 1;
    aspect-ratio: 1;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.iphone-tile-item:nth-child(1) { background-image: url('public/depois/horizontal/3.webp'); }
.iphone-tile-item:nth-child(2) { background-image: url('public/depois/horizontal/4.webp'); }
.iphone-tile-item:nth-child(3) { background-image: url('public/depois/horizontal/5.webp'); }

/* =========================
   GALLERY (DRAG SLIDERS WITH CATEGORIES)
   ========================= */
.gallery-title {
    font-size: 4rem;
    text-align: center;
    color: var(--text);
    margin-bottom: 16px;
}

.gallery-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 56px;
    font-size: 1rem;
}

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

.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.gallery-item .category {
    font-family: 'New Spirit', serif;
    font-size: 1.6rem;
    letter-spacing: 0;
    color: var(--text);
    text-transform: lowercase;
}

.gallery-item .ba-slider {
    aspect-ratio: 16 / 10;
    width: 100%;
    border: 1px solid var(--border);
}

/* =========================
   PAINT REVEAL EFFECT
   ========================= */
.paint-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.paint-section h2 {
    font-size: 4rem;
    text-align: center;
    color: var(--text);
    margin-bottom: 16px;
}

.paint-section .gallery-sub {
    margin-bottom: 56px;
}

.paint-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.paint-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(155, 32, 69, 0.15);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.paint-card:active {
    cursor: grabbing;
}

.paint-after {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.paint-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: block;
    touch-action: none;
}

.paint-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    color: var(--text);
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 30px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.4s ease;
}

.paint-card.touched .paint-hint { opacity: 0; }

/* =========================
   FAQ — burgundy dark
   ========================= */
.faq {
    background: var(--bg-base);
    color: var(--text);
}

.faq-title {
    font-size: 4rem;
    text-align: center;
    color: var(--text);
    margin-bottom: 56px;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 28px 0;
    font-family: 'New Spirit', serif;
    font-size: 1.6rem;
    text-transform: lowercase;
    letter-spacing: 0;
    color: var(--text);
    transition: color 0.2s ease;
}

.faq-question:hover { color: var(--accent); }

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(155, 32, 69, 0.2);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid var(--border);
}

.faq-item.open .faq-toggle {
    background: var(--primary);
    border-color: var(--accent);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer-inner {
    padding: 0 0 28px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 90%;
}

/* =========================
   FOOTER
   ========================= */
.footer {
    background: #000000;
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 40px 24px 80px;
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
}

.footer-credits {
    margin-top: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-credits a {
    color: var(--accent);
    font-weight: 600;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-credits a:hover {
    color: var(--text);
    text-shadow: 0 0 12px rgba(214, 58, 110, 0.6);
}

/* =========================
   RESPONSIVE — LAPTOP / TABLET PAISAGEM (≤ 1024px)
   ========================= */
@media (max-width: 1024px) {
    .container { max-width: 100%; padding: 0 32px; }

    .hero-title { font-size: 4.5rem; }
    .section-title { font-size: 4rem; }
    .gallery-title, .faq-title, .paint-section h2, .packages-header h2 { font-size: 3.5rem; }

    .packages-grid { grid-template-columns: 1fr; gap: 20px; max-width: 540px; margin: 0 auto; }

    .hero-grid { gap: 40px; }
}

/* =========================
   RESPONSIVE — TABLET (≤ 968px)
   ========================= */
@media (max-width: 968px) {
    .hero { padding: 110px 0 140px; }
    .hero::after { height: 140px; }

    .hero-grid,
    .magic-grid,
    .learn-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content,
    .magic-text,
    .learn-text,
    .pricing-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle,
    .magic-text p,
    .learn-text p,
    .packages-header p {
        margin-left: auto;
        margin-right: auto;
    }

    .logo-hero { margin-left: auto; margin-right: auto; }

    .hero-title { font-size: 4rem; }
    .section-title { font-size: 3.5rem; }
    .gallery-title, .faq-title, .paint-section h2, .packages-header h2 { font-size: 3rem; }
    .learn-text h2 { font-size: 3rem; }
    .pricing-title { font-size: 3rem; }

    .hero-video { max-width: 640px; margin: 0 auto; width: 100%; }

    .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
    .benefit-card { min-height: auto; padding: 32px 28px; flex-direction: row; align-items: center; gap: 20px; text-align: left; }
    .benefit-card .benefit-icon { margin-bottom: 0; }
    .benefit-card h3 { font-size: 1.7rem; }

    .gallery-grid, .paint-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }

    .iphone { transform: rotate(-8deg) scale(0.95); }

    .logo-hero { max-height: 80px; max-width: 220px; }

    .pricing-bullets { width: 100%; max-width: 480px; }
    .pricing-bullets li { text-align: left; }
    .pricing-intro { margin-left: auto; margin-right: auto; }
}

/* =========================
   RESPONSIVE — MOBILE (≤ 768px)
   ========================= */
@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .hero { padding: 100px 0 130px; min-height: auto; }
    .hero::after { height: 130px; }

    .hero-title { font-size: 3.5rem; }
    .hero-supertitle { font-size: 0.75rem; letter-spacing: 3px; }
    .hero-subtitle { font-size: 1rem; }

    .section-title,
    .gallery-title,
    .faq-title,
    .paint-section h2,
    .packages-header h2 { font-size: 2.8rem; }

    .learn-text h2 { font-size: 2.8rem; }
    .pricing-title { font-size: 2.6rem; }

    .package { padding: 36px 28px; }
    .package-features li { font-size: 0.95rem; }

    .gallery-item .ba-slider { aspect-ratio: 4 / 3; }

    .container { padding: 0 24px; }
}

/* =========================
   RESPONSIVE — MOBILE PEQUENO (≤ 480px)
   ========================= */
@media (max-width: 480px) {
    .section { padding: 64px 0; }

    .hero { padding: 90px 0 110px; }
    .hero::after { height: 110px; }
    .hero-title { font-size: 2.8rem; }
    .hero-supertitle { font-size: 0.7rem; letter-spacing: 2.5px; margin-bottom: 16px; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 28px; }

    .section-title,
    .gallery-title,
    .faq-title,
    .paint-section h2,
    .packages-header h2 { font-size: 2.4rem; }

    .learn-text h2 { font-size: 2.4rem; }
    .pricing-title { font-size: 2.2rem; }
    .pricing-intro { font-size: 0.95rem; }
    .pricing-eyebrow { font-size: 0.7rem; letter-spacing: 2.5px; }

    .btn-cta {
        width: 100%;
        padding: 16px 28px;
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }

    .btn-cta.lg { padding: 18px 32px; font-size: 0.95rem; }

    .benefit-card { padding: 28px 24px; flex-direction: column; align-items: center; text-align: center; }
    .benefit-card h3 { font-size: 1.5rem; }
    .benefit-icon { width: 48px; height: 48px; font-size: 1.3rem; margin-bottom: 18px; }

    .iphone { width: 230px; height: 480px; transform: rotate(-6deg); }
    .iphone-screen { border-radius: 28px; }
    .iphone-notch { width: 90px; height: 24px; }

    .faq-question { font-size: 1.1rem; padding: 22px 0; letter-spacing: 0; }
    .faq-answer-inner { font-size: 0.95rem; padding-bottom: 22px; }

    .container { padding: 0 20px; }

    .package { padding: 28px 22px; border-radius: 20px; }
    .package-price { font-size: 3rem; }
    .package-name { font-size: 1.25rem; }
    .package-tagline { font-size: 0.9rem; min-height: auto; margin-bottom: 22px; }
    .package-badge { top: 22px; right: 22px; font-size: 0.7rem; padding: 5px 12px; }

    .packages-header h2 { font-size: 2.2rem; }
    .packages-header p { font-size: 0.95rem; }

    /* Galeria: força aspect ratio mais quadrado p/ caber bem na tela */
    .gallery-item .ba-slider { aspect-ratio: 4 / 3; border-radius: 14px; }
    .gallery-item .category { font-size: 1.4rem; letter-spacing: 0; }

    .ba-slider { border-radius: 14px; }
    .ba-handle-btn { width: 40px; height: 40px; }
    .ba-label { font-size: 0.8rem; padding: 5px 10px; }
    .ba-hint { font-size: 0.75rem; padding: 7px 14px; }

    .paint-card { aspect-ratio: 4 / 5; border-radius: 14px; }
    .paint-hint { font-size: 0.8rem; padding: 8px 16px; }

    .learn-images { gap: 10px; }

    .logo-hero { max-height: 64px; max-width: 180px; margin-bottom: 20px; }
    .pricing-bullets li { text-align: left; }

    .logo-footer { max-height: 50px; max-width: 160px; }
    .footer { padding: 32px 20px 40px; }
}

/* =========================
   RESPONSIVE — XS (≤ 360px)
   ========================= */
@media (max-width: 360px) {
    .container { padding: 0 16px; }

    .hero-title { font-size: 2.4rem; }
    .section-title,
    .gallery-title,
    .faq-title,
    .paint-section h2,
    .packages-header h2 { font-size: 2rem; }

    .learn-text h2 { font-size: 2rem; }
    .pricing-title { font-size: 1.9rem; }
    .package-price { font-size: 2.6rem; }

    .iphone { width: 200px; height: 420px; }
    .btn-cta { padding: 14px 22px; font-size: 0.85rem; }

    .benefit-card { padding: 24px 20px; }
    .package { padding: 24px 18px; }
}
