/* ============================
   MEMORIAL TAG — CSS Principal
   ============================ */

/* ── Variables ── */
:root {
    --gold:        #D48529;
    --gold-light:  #E8A84A;
    --gold-dark:   #A8651A;
    --dark:        #0D0A07;
    --dark-2:      #161009;
    --dark-3:      #1E1610;
    --surface:     #231A0F;
    --surface-2:   #2C2015;
    --text:        #F0EAE0;
    --text-muted:  #9A8570;
    --border:      rgba(212,133,41,0.18);
    --radius:      12px;
    --radius-lg:   20px;
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Outfit', sans-serif;
    --shadow-gold:  0 8px 32px rgba(212,133,41,0.18);
    --shadow-dark:  0 8px 40px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--dark);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #0D0A07;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(212,133,41,0.35);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    box-shadow: 0 6px 30px rgba(212,133,41,0.55);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: #0D0A07;
    transform: translateY(-2px);
}

.btn-lg { padding: 18px 48px; font-size: 1rem; }

/* ── Section Commons ── */
.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 16px;
}
.section-title.light { color: #fff; }

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
}

.section-head { margin-bottom: 56px; }
.section-head .section-desc { margin: 0 auto; }

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

/* ── Data AOS (Scroll animations) ── */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="zoom-in"]    { transform: scale(0.92); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ==============================
   NAVBAR
   ============================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13, 10, 7, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(13, 10, 7, 0.99);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding: 0 20px;
}

.nav-logo img { height: 44px; }
.logo-text-fallback {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}

/* Hambúrguer — escondido no desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu desktop — só aparece acima de 768px */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links {
    display: flex;
    gap: 4px;
}
.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 6px 10px;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

.nav-social {
    display: flex;
    gap: 12px;
}
.nav-social a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}
.nav-social a:hover { color: var(--gold); }

/* ── NAVBAR MOBILE ── */
@media (max-width: 768px) {

    /* Mostra o hambúrguer */
    .nav-toggle { display: flex; }

    /* Esconde o menu inteiro da navbar — vira drawer */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0; right: 0;
        width: 280px;
        height: 100dvh;
        background: #0D0A07;
        border-left: 1px solid rgba(212,133,41,0.2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 24px 40px;
        gap: 0;
        overflow-y: auto;
        z-index: 1050;
        box-shadow: -4px 0 32px rgba(0,0,0,0.8);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    /* Drawer aberto */
    .nav-menu.open {
        display: flex;
        transform: translateX(0);
    }

    /* Links dentro do drawer */
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 32px;
    }
    .nav-links li { width: 100%; }
    .nav-links .nav-link {
        display: block;
        width: 100%;
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--text);
        padding: 16px 0;
        border-bottom: 1px solid rgba(212,133,41,0.1);
        border-radius: 0;
        white-space: normal;
    }
    .nav-links .nav-link:hover,
    .nav-links .nav-link.active { color: var(--gold); }

    /* Social dentro do drawer */
    .nav-social { gap: 20px; margin-bottom: 28px; }
    .nav-social a { font-size: 1.2rem; }

    /* Botão dentro do drawer */
    .nav-menu .btn { width: 100%; justify-content: center; }
}

/* ==============================
   HERO
   ============================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 40%, rgba(212,133,41,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(212,133,41,0.05) 0%, transparent 60%),
        linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
    z-index: 0;
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D48529' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.hero-image {
    position: relative;
}
.hero-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse, rgba(212,133,41,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-gold), var(--shadow-dark);
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.0;
    margin-bottom: 24px;
    color: #fff;
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
}
.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
    z-index: 1;
}
.hero-scroll-indicator i { color: var(--gold); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ==============================
   VIDEO
   ============================== */
.video-section {
    padding: 100px 0;
    background: var(--dark-2);
}
.video-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
    margin: 0 auto;
}
.video-frame {
    width: 100%;
    position: relative;
    padding-bottom: 177.78%; /* 9:16 */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-gold), var(--shadow-dark);
    border: 1px solid var(--border);
}
.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ==============================
   HOW IT WORKS
   ============================== */
.how-it-works {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.how-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a0e05 0%, #0f0a06 40%, #1E1610 100%);
    z-index: 0;
}
.how-bg::before {
    content: '';
    position: absolute;
    right: -200px; top: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(ellipse, rgba(212,133,41,0.07) 0%, transparent 70%);
    border-radius: 50%;
}

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

.how-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}
.how-steps li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #0D0A07;
    letter-spacing: 0.05em;
}
.how-steps strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 4px;
}
.how-steps p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.how-highlights {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 500;
}
.highlight-item i { font-size: 1.1rem; }

.how-image {
    position: relative;
}
.how-image::after {
    content: '';
    position: absolute;
    inset: 20px -20px -20px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    z-index: -1;
}
.how-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dark);
    width: 100%;
    object-fit: cover;
}

/* ==============================
   FEATURES
   ============================== */
.features {
    padding: 100px 0;
    background: var(--dark);
}

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}
.feature-card:hover {
    border-color: rgba(212,133,41,0.4);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}
.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.feature-card:hover .feature-icon img { transform: scale(1.05); }
.feature-icon i {
    font-size: 3rem;
    color: var(--gold);
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==============================
   GALLERY
   ============================== */
.gallery {
    padding: 100px 0;
    background: var(--dark-2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 8px 4px 16px;
    align-items: start; /* cada item tem sua própria altura */
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border: 1px solid var(--border);
    transition: box-shadow var(--transition), transform var(--transition);
    background: var(--surface);
}
.gallery-item:hover {
    box-shadow: var(--shadow-gold), 0 8px 32px rgba(0,0,0,0.5);
    transform: translateY(-4px);
}
.gallery-item img {
    width: 100%;
    height: auto;          /* altura natural — sem corte */
    display: block;
    transition: transform 0.5s ease;
    border-radius: var(--radius-lg);
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(13,10,7,0.5), transparent);
    pointer-events: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ==============================
   CTA BANNER
   ============================== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--surface) 0%, #1a0e05 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 32px;
    color: #fff;
}

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials {
    padding: 100px 0;
    background: var(--dark);
}

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

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: rgba(212,133,41,0.35);
    transform: translateY(-4px);
}
.testimonial-quote {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 16px;
    opacity: 0.6;
}
.testimonial-text {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-name {
    color: var(--gold-light);
    font-size: 0.9rem;
}

/* ==============================
   PRICING
   ============================== */
.pricing {
    padding: 100px 0;
    background: var(--dark-2);
}

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

.plan-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-dark);
}
.plan-featured {
    background: linear-gradient(155deg, #231A0F 0%, #1a1006 100%);
    border-color: rgba(212,133,41,0.5);
    box-shadow: var(--shadow-gold);
    transform: scale(1.03);
}
.plan-featured:hover { transform: scale(1.03) translateY(-6px); }

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: #0D0A07;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 20px;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold-light);
}
.plan-original {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.plan-installments {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.plan-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.plan-period {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
    margin-top: 6px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
}
.plan-features li.active { color: var(--text); }
.plan-features li.inactive { color: var(--text-muted); opacity: 0.5; }
.plan-features li i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.75rem;
    width: 16px;
}
.plan-features li.active i { color: var(--gold); }
.plan-features li.inactive i { color: #666; }

.plan-card .btn { width: 100%; justify-content: center; }

/* ==============================
   FOOTER
   ============================== */
.footer {
    background: var(--dark-3);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 240px;
    line-height: 1.7;
}
.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    color: #0D0A07;
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    text-align: center;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ==============================
   WHATSAPP FLOAT
   ============================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-wpp 2.5s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.55);
    color: #fff;
}
@keyframes pulse-wpp {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ==============================
   RESPONSIVE
   ============================== */

/* ── Tablet ── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .gallery-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .pricing-grid  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .plan-featured { transform: scale(1); }
    .plan-featured:hover { transform: translateY(-6px); }
    .how-grid { gap: 48px; }
}

/* ── Mobile ── */
@media (max-width: 768px) {

    /* HERO */
    .hero { padding: 86px 0 48px; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 28px; }
    .hero-image { order: -1; max-width: 260px; margin: 0 auto; }
    .hero-desc { margin: 0 auto 28px; font-size: 0.95rem; }
    .hero-actions { justify-content: center; flex-wrap: wrap; gap: 12px; }
    .hero-scroll-indicator { display: none; }

    /* HOW IT WORKS */
    .how-grid { grid-template-columns: 1fr; gap: 40px; }
    .how-image { display: none; }
    .how-highlights { gap: 16px; }

    /* FEATURES — 1 coluna, imagem grande */
    .features { padding: 60px 0; }
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .feature-card { padding: 0 0 24px; overflow: hidden; }
    .feature-card::before { display: none; }
    .feature-icon {
        aspect-ratio: 16/9;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        border: none;
        margin-bottom: 20px;
        width: 100%;
    }
    .feature-card h3 { padding: 0 20px; font-size: 1.3rem; margin-bottom: 8px; }
    .feature-card p  { padding: 0 20px; }

    /* GALLERY */
    .gallery { padding: 60px 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 4px; }

    /* TESTIMONIALS */
    .testimonials { padding: 60px 0; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonial-card { padding: 24px 20px; }

    /* PRICING */
    .pricing { padding: 60px 0; }
    .pricing-grid { max-width: 100%; }

    /* FOOTER */
    .footer { padding: 48px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    /* Padding geral menor */
    .video-section,
    .how-it-works,
    .cta-banner { padding: 60px 0; }
    .section-head { margin-bottom: 36px; }
}

/* ── iPhone SE / telas muito pequenas ── */
@media (max-width: 390px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2.6rem; }
    .hero-image { max-width: 220px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .btn { padding: 12px 20px; font-size: 0.82rem; }
}