* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    /* Cores Mozaiko */
    --mz-green-600: #205900;
    --mz-cream: #fff1b6;
    --mz-brown: #554419;
    --mz-coral: #ff6b3d;
    --mz-olive: #205900;
    --mz-green-700: #174200;
    --mz-cream-50: #FFF8D9;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--mz-cream);
    color: var(--mz-brown);
    line-height: 1.6;
}

.revelacao-page {
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}


/* Headline Section */
.headline-section {
    text-align: center;

}

.special-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--mz-coral) 0%, #ff8c3d 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 61, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.special-badge svg {
    animation: rotate 3s linear infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.headline {
    font-size: 32px;
    font-weight: 700;
    color: var(--mz-green-600);

    line-height: 1.2;
}

.subheadline {
    font-size: 18px;
    color: var(--mz-brown);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;

}

/* VSL Section */
.vsl-section {
    max-width: 600px;
    margin: 20px auto;

}

.vsl-section vturb-smartplayer {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.headline-timer-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid var(--mz-coral);
    border-radius: 14px;
    color: var(--mz-brown);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(255, 107, 61, 0.25);
}

.headline-timer-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.headline-timer-value {
    font-size: 18px;
    color: var(--mz-coral);
    background: #fff;
    padding: 4px 10px;
    border-radius: 10px;
    min-width: 72px;
    text-align: center;
}

.headline-timer-chip.expired {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: var(--mz-coral);
    color: var(--mz-coral);
}

.headline-timer-chip.expired .headline-timer-value {
    background: transparent;
    color: var(--mz-coral);
    min-width: unset;
}

/* Countdown Timer */
.urgency-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border: 2px solid var(--mz-coral);
    border-radius: 12px;
    padding: 14px 20px;
    margin: 0 0 20px 0;
    box-shadow: 0 4px 20px rgba(255, 107, 61, 0.2);
}

.timer-icon {
    font-size: 24px;
    animation: swing 1s ease-in-out infinite;
}

@keyframes swing {

    0%,
    100% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

.timer-content {
    flex: 1;
}

.timer-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--mz-brown);
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timer-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--mz-coral);
    line-height: 1;
}

.timer-text {
    font-size: 10px;
    font-weight: 600;
    color: var(--mz-brown);
    opacity: 0.7;
    text-transform: uppercase;
}

.timer-separator {
    font-size: 22px;
    font-weight: 700;
    color: var(--mz-coral);
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0.3;
    }
}

/* Timer Expired State */
.timer-expired {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: var(--mz-coral);
    animation: pulse 1.5s ease-in-out infinite;
}

.timer-expired-message {
    font-size: 16px;
    font-weight: 700;
    color: var(--mz-coral);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.reveal-carousel {
    margin-bottom: 32px;
}

.offer-style-heading h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--mz-green-600);
    text-align: center;
    margin: 0 0 16px;
}

.offer-style-strip {
    width: calc(100% + 32px);
    margin-left: -16px;
    overflow: hidden;
}

.offer-style-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(100px, 130px);
    gap: 10px;
    width: max-content;
    animation: style-scroll var(--marquee-duration, 50s) linear infinite;
}

.style-preview {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
    background: #f7f2e7;
    aspect-ratio: 3 / 4;
}

.style-preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

@keyframes style-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Gallery Locked Section */
.gallery-locked-section {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Unlock Section (New Combined) */
.unlock-section {
    margin-bottom: 40px;
}

/* Choice Headline */
.choice-headline {
    text-align: center;
    margin-bottom: 32px;
}

.choice-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--mz-green-600);
    margin-bottom: 12px;
    line-height: 1.2;
}

.choice-subtitle {
    font-size: 16px;
    color: var(--mz-brown);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Switch Container - Mobile App Style */
.pricing-switch-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 24px;
}

/* Pricing Option Cards */
.pricing-option-card {
    background: white;
    border-radius: 16px;
    padding: 16px 18px;
    border: 2px solid rgba(32, 89, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pricing-option-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.pricing-option-card.selected {
    border: 3px solid var(--mz-green-600);
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    box-shadow: 0 6px 24px rgba(32, 89, 0, 0.25);
}

/* Badge Hero */
.pricing-option-badge {
    position: absolute;
    top: -12px;
    left: 12px;
    background: linear-gradient(135deg, var(--mz-coral) 0%, #ff8c3d 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(255, 107, 61, 0.4);
    animation: pulse 2s ease-in-out infinite;
    white-space: nowrap;
}

/* Option Header */
.pricing-option-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Radio Button */
.option-radio {
    flex-shrink: 0;
}

.radio-outer {
    width: 24px;
    height: 24px;
    border: 2px solid var(--mz-green-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.2s ease;
}

.radio-inner {
    width: 14px;
    height: 14px;
    background: var(--mz-green-600);
    border-radius: 50%;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* Option Content */
.option-content {
    flex: 1;
    min-width: 0;
}

.option-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--mz-green-600);
    margin: 0 0 4px 0;
    line-height: 1.2;
}

/* Option Pricing - Badge com Notch */
.option-pricing {
    flex-shrink: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--mz-green-600);
    padding: 16px 20px 16px 24px;
    border-radius: 0 8px 8px 0;
    position: relative;
    margin-right: -18px;
    margin-top: -16px;
    margin-bottom: -16px;
    box-shadow: 0 4px 12px rgba(32, 89, 0, 0.3);
}

/* Notch/Ponta triangular arredondada na esquerda */
.option-pricing::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 32px;
    height: 32px;
    background: var(--mz-green-600);
    border-radius: 0 0 0 6px;
    box-shadow: -4px 4px 8px rgba(32, 89, 0, 0.15);
}

.price-highlight {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-top: 8px;
}

.price-value {
    font-size: 56px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.price-cents-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.price-cents {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-top: 8px;
    line-height: 1;
}

.price-period {
    font-size: 11px;
    font-weight: 600;
    color: white;
    opacity: 0.9;
    margin: 0;
    text-align: center;
    line-height: 1;
}

.price-subtext {
    font-size: 15px;
    color: var(--mz-brown);
    opacity: 0.7;
    margin: 0;
    line-height: 1.3;
}

.price-full {
    text-decoration: line-through;
    color: #dc2626;
    opacity: 0.8;
    font-weight: 500;
}

.price-alert {
    font-size: 11px;
    color: #dc2626;
    font-weight: 600;
    margin: 4px 0 0 0;
    line-height: 1.3;
}

/* CTA Container */
.pricing-cta-container {
    max-width: 600px;
    margin: 0 auto 24px;
    text-align: center;
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.cta-benefit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: #fff;
    border: 1.5px solid rgba(32, 89, 0, 0.16);
    border-radius: 10px;
    color: var(--mz-brown);
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cta-benefit .benefit-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    color: var(--mz-green-600);
}

.cta-benefit svg {
    width: 100%;
    height: 100%;
}

.cta-benefit .benefit-text {
    white-space: nowrap;
}

.pricing-cta-button {
    width: 100%;
    padding: 18px 24px;
    background: var(--mz-coral);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(255, 107, 61, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.pricing-cta-button:hover {
    background: #ff5624;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 61, 0.4);
    animation: none;
}

.pricing-cta-button:active {
    transform: translateY(0);
}

.pricing-cta-button .cta-icon {
    transition: transform 0.2s ease;
}

.pricing-cta-button:hover .cta-icon {
    transform: translateX(4px);
}

.floating-anchor-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    margin: -70px auto 40px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ff8c3d 0%, #ff5624 100%);
    color: white;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    border: 3px solid var(--mz-green-600);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 100;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-anchor-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff9d5e 0%, #ff6b3d 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.floating-anchor-btn:active {
    transform: scale(0.98);
}

/* Container do Quadrão */
.quadrao-container {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    width: 100%;
}

/* Gallery Box com efeito de camadas empilhadas */
.gallery-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
}

/* Camadas empilhadas (efeito de stack de fotos) */
.gallery-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--mz-cream-50) 0%, #f5e9c0 100%);
    border: 3px solid var(--mz-green-600);
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.gallery-layer.layer-0 {
    transform: translate(-8px, -8px) rotate(-2deg);
    opacity: 0.4;
    z-index: 1;
    animation: floatLayer0 3s ease-in-out infinite;
}

.gallery-layer.layer-1 {
    transform: translate(-4px, -4px) rotate(-1deg);
    opacity: 0.6;
    z-index: 2;
    animation: floatLayer1 3.5s ease-in-out infinite;
    /* Tempos diferentes para movimento orgânico */
}

.gallery-layer.layer-2 {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
    z-index: 3;
}

/* Conteúdo principal da galeria */
.gallery-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 4;
    background: linear-gradient(135deg, var(--mz-cream-50) 0%, #f5e9c0 100%);
    border: 4px solid var(--mz-green-600);
    border-radius: 28px;
}

/* Ícone SVG de galeria */
.gallery-icon {
    width: 80px;
    height: 80px;
    color: var(--mz-green-600);
    opacity: 0.5;
}

/* Contador de fotos */
.gallery-count {
    font-size: 20px;
    font-weight: 700;
    color: var(--mz-green-600);
    opacity: 0.7;
}

/* Overlay do cadeado */
.gallery-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 20px;
    background: var(--mz-green-700);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

/* Background animado com blur via pseudo-element */
.gallery-lock-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--mz-green-700);
    background-size: 200% 200%;
    background-image: linear-gradient(135deg, var(--mz-green-700) 20%, #5cbf0d 50%, var(--mz-green-700) 80%);
    animation: gradientShift 2s linear infinite;
    filter: blur(30px);
    z-index: 0;
}

/* Gallery Lock Icon */
.gallery-lock-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    color: var(--mz-cream);
    filter: drop-shadow(0 4px 12px rgba(32, 89, 0, 0.3));
    animation: pulseIcon 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* User Profile Inside Lock */
.user-profile-locked {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 380px;
}

.user-avatar-locked {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--mz-cream);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.user-info-locked {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.user-name-locked {
    font-size: 15px;
    font-weight: 700;
    color: var(--mz-cream);
    margin-bottom: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.photo-count-locked {
    font-size: 12px;
    font-weight: 600;
    color: var(--mz-cream);
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 200%;
    }

    /* Move na diagonal completa */
}

@keyframes floatLayer0 {

    0%,
    100% {
        transform: translate(-8px, -8px) rotate(-2deg);
    }

    50% {
        transform: translate(-16px, -12px) rotate(-6deg);
    }

    /* Abre mais o leque */
}

@keyframes floatLayer1 {

    0%,
    100% {
        transform: translate(-4px, -4px) rotate(-1deg);
    }

    50% {
        transform: translate(-8px, -8px) rotate(-3deg);
    }

    /* Abre um pouco */
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.gallery-lock-icon svg {
    width: 100%;
    height: 100%;
}


/* Coluna da Oferta */
.unlock-offer-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.offer-header {
    text-align: center;
    margin-bottom: 16px;
}

.offer-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--mz-green-600);
    margin-bottom: 14px;
}

/* Pricing Selection Card */
.pricing-selection-card {
    position: relative;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid var(--mz-green-600);
    border-radius: 16px;
    padding: 18px 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(32, 89, 0, 0.15);
    transition: all 0.3s ease;
}

.pricing-selection-card:hover {
    box-shadow: 0 6px 24px rgba(32, 89, 0, 0.25);
    transform: translateY(-2px);
}

.selection-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    background: linear-gradient(135deg, var(--mz-coral) 0%, #ff8c3d 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 61, 0.4);
    animation: pulse 2s ease-in-out infinite;
    white-space: nowrap;
}

.selection-card-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.selection-radio {
    flex-shrink: 0;
}

.radio-outer {
    width: 24px;
    height: 24px;
    border: 2px solid var(--mz-green-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.radio-inner {
    width: 14px;
    height: 14px;
    background: var(--mz-green-600);
    border-radius: 50%;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.selection-details {
    flex: 1;
    min-width: 0;
}

.selection-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--mz-green-600);
    margin-bottom: 4px;
    line-height: 1.2;
}

.selection-subtitle {
    font-size: 12px;
    color: var(--mz-brown);
    opacity: 0.8;
    line-height: 1.3;
}

.selection-price {
    flex-shrink: 0;
    text-align: right;
}

.price-old-small {
    font-size: 13px;
    color: var(--mz-brown);
    text-decoration: line-through;
    opacity: 0.6;
    margin-bottom: 2px;
}

.price-current {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 1px;
}

.price-currency-small {
    font-size: 14px;
    font-weight: 600;
    color: var(--mz-green-600);
    margin-top: 2px;
}

.price-value-large {
    font-size: 28px;
    font-weight: 700;
    color: var(--mz-green-600);
    line-height: 1;
}

.price-cents-small {
    font-size: 14px;
    font-weight: 600;
    color: var(--mz-green-600);
    margin-top: 2px;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 16px auto;
    text-align: left;
    max-width: 280px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--mz-brown);
    font-weight: 500;
}

.benefits-list svg {
    flex-shrink: 0;
    color: var(--mz-green-600);
}

/* CTA Button */
.cta-button {
    width: 100%;
    padding: 16px 24px;
    background: var(--mz-coral);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 61, 0.4);
    background: #ff5624;
}

.cta-button:active {
    transform: translateY(0);
}

.cta-icon {
    transition: transform 0.2s ease;
}

.cta-button:hover .cta-icon {
    transform: translateX(4px);
}

/* Payment Security */
.payment-security {
    margin: 0;
    padding: 0;
}

.security-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--mz-brown);
    font-weight: 500;
}

.security-icons svg {
    color: var(--mz-green-600);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    padding: 6px 12px;
    background: var(--mz-cream-50);
    border-radius: 6px;
    color: var(--mz-brown);
    font-weight: 500;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
}

.pix-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pix-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

/* Social Proof Section */
.social-proof-section {
    margin: 48px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 40px;
    padding: 0;
    background: none;
    border-radius: 16px;
    border: none;
    box-shadow: none;
}

.stat-item {
    text-align: center;
    padding: 16px 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    color: var(--mz-green-600);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--mz-brown);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.stars {
    font-size: 16px;
    margin-top: 4px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(32, 89, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--mz-green-600);
}

.testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--mz-green-600);
}

.testimonial-role {
    font-size: 13px;
    color: var(--mz-brown);
    opacity: 0.7;
}

.testimonial-stars {
    margin-left: auto;
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--mz-brown);
    font-style: italic;
}

/* Secondary CTA Section */
.secondary-cta-section {
    text-align: center;
    margin: 40px 0;
}

.cta-secondary {
    max-width: 500px;
    margin: 0 auto;
}

.secondary-cta-subtext {
    margin-top: 12px;
    font-size: 14px;
    color: var(--mz-brown);
    font-weight: 500;
}

.carousel-subtext {
    font-size: 16px;
    color: var(--mz-brown);
    opacity: 0.8;
    margin-top: 8px;
}

/* FAQ Section */
.faq-section {
    margin: 48px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--mz-green-600);
    text-align: center;
    margin-bottom: 32px;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(32, 89, 0, 0.1);
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: var(--mz-green-600);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--mz-green-600);
    user-select: none;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--mz-green-600);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 15px;
    line-height: 1.6;
    color: var(--mz-brown);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 18px 24px;
}

/* Guarantee Section */
.guarantee-section {
    max-width: 600px;
    margin: 48px auto;
}

.guarantee-card {
    background: linear-gradient(135deg, #e8f5e0 0%, #d4edda 100%);
    border: 3px solid var(--mz-green-600);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(32, 89, 0, 0.15);
}

.guarantee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--mz-green-600);
    box-shadow: 0 4px 16px rgba(32, 89, 0, 0.2);
}

.guarantee-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--mz-green-600);
    margin-bottom: 12px;
}

.guarantee-card p {
    font-size: 15px;
    color: var(--mz-brown);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    margin: 48px 0;
}

.final-cta-card {
    background: linear-gradient(135deg, var(--mz-cream-50) 0%, #fff5cc 100%);
    border: 3px solid var(--mz-coral);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(255, 107, 61, 0.2);
}

.final-cta-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--mz-green-600);
    margin-bottom: 12px;
}

.final-cta-card p {
    font-size: 16px;
    color: var(--mz-brown);
    margin-bottom: 24px;
}

.cta-final {
    max-width: 500px;
    margin: 0 auto;
    animation: pulse 2s ease-in-out infinite;
}

.final-cta-timer {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--mz-coral);
}

.inline-timer {
    font-size: 20px;
    font-weight: 700;
    color: var(--mz-coral);
    background: white;
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-block;
    margin-left: 8px;
}

/* Responsivo */
@media (max-width: 850px) {

    .choice-title {
        font-size: 24px;
    }

    .choice-subtitle {
        font-size: 15px;
    }

    .option-title {
        font-size: 15px;
    }

    .price-value {
        font-size: 48px;
    }

    .price-currency,
    .price-cents {
        font-size: 18px;
        margin-top: 6px;
    }

    .price-period {
        font-size: 11px;
    }

    .gallery-locked-section {
        margin-bottom: 24px;
        max-width: 100%;
    }

    .headline {
        font-size: 24px;
    }

    .subheadline {
        font-size: 16px;
    }

    .price-value {
        font-size: 44px;
    }

    .gallery-box {
        max-width: 100%;
    }

    .quadrao-container {
        margin-bottom: 12px;
    }

    .stats-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .stat-item {
        background: #fff;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.04);
        padding: 12px 10px;
    }

    .stat-divider {
        width: 50%;
        height: 1px;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .urgency-timer {
        padding: 12px 16px;
        gap: 10px;
    }

    .timer-icon {
        font-size: 20px;
    }

    .timer-number {
        font-size: 20px;
    }

    .timer-separator {
        font-size: 20px;
    }
}

@media (max-width: 480px) {

    /* Pricing Mobile */
    .choice-title {
        font-size: 22px;
    }

    .choice-subtitle {
        font-size: 14px;
    }

    .pricing-option-card {
        padding: 14px 14px;
    }

    .pricing-option-badge {
        font-size: 10px;
        padding: 5px 12px;
        top: -15px;
    }

    .pricing-option-header {
        gap: 10px;
    }

    .option-pricing {
        margin-right: -14px;
        margin-top: -14px;
        margin-bottom: -14px;
        padding: 14px 16px 14px 20px;
    }

    .option-pricing::before {
        left: -12px;
        width: 24px;
        height: 24px;
        border-radius: 0 0 0 5px;
    }

    .option-title {
        font-size: 14px;
    }

    .price-value {
        font-size: 42px;
    }

    .price-currency,
    .price-cents {
        font-size: 16px;
        margin-top: 5px;
    }

    .price-period {
        font-size: 10px;
    }

    .price-subtext {
        font-size: 15px;
    }

    .price-alert {
        font-size: 10px;
    }

    .radio-outer {
        width: 20px;
        height: 20px;
    }

    .radio-inner {
        width: 12px;
        height: 12px;
    }

    .pricing-cta-button {
        padding: 16px 20px;
        font-size: 14px;
    }

    .gallery-locked-section {
        margin-bottom: 20px;
        max-width: 100%;
    }

    .gallery-box {
        max-width: 100%;
    }

    .quadrao-container {
        margin-bottom: 0;
    }

    .gallery-lock-overlay {
        gap: 16px;
        padding: 20px 16px;
        border-radius: 24px;
    }

    .gallery-lock-icon {
        width: 48px;
        height: 48px;
    }

    .user-profile-locked {
        padding: 10px 12px;
        gap: 10px;
        max-width: 100%;
    }

    .user-avatar-locked {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }

    .user-name-locked {
        font-size: 14px;
    }

    .photo-count-locked {
        font-size: 11px;
    }


    .offer-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    /* Pricing Selection Card Mobile */
    .pricing-selection-card {
        padding: 16px 14px;
        margin-bottom: 14px;
    }

    .selection-badge {
        top: -9px;
        right: 10px;
        padding: 5px 12px;
        font-size: 11px;
    }

    .selection-card-content {
        gap: 12px;
    }

    .radio-outer {
        width: 22px;
        height: 22px;
    }

    .radio-inner {
        width: 12px;
        height: 12px;
    }

    .selection-title {
        font-size: 15px;
    }

    .selection-subtitle {
        font-size: 11px;
    }

    .price-old-small {
        font-size: 12px;
    }

    .price-currency-small {
        font-size: 13px;
    }

    .price-value-large {
        font-size: 26px;
    }

    .price-cents-small {
        font-size: 13px;
    }

    .benefits-list {
        margin: 12px 0;
    }

    .benefits-list li {
        padding: 6px 0;
        font-size: 13px;
        gap: 8px;
    }

    .benefits-list svg {
        width: 18px;
        height: 18px;
    }

    .urgency-timer {
        padding: 12px 16px;
        gap: 10px;
        margin-bottom: 16px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .timer-icon {
        font-size: 28px;
        flex-shrink: 0;
    }

    .timer-content {
        flex: 0 1 auto;
        text-align: center;
    }

    .timer-label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .timer-display {
        justify-content: center;
        gap: 6px;
    }

    .timer-number {
        font-size: 20px;
    }

    .timer-text {
        font-size: 9px;
    }

    .timer-separator {
        font-size: 20px;
    }

    .timer-unit {
        padding: 6px 12px;
    }

    .unlock-section {
        margin-bottom: 24px;
    }

    .offer-header {
        margin-bottom: 10px;
    }

    .cta-button {
        padding: 14px 16px;
        font-size: 14px;
        gap: 8px;
    }

    .payment-security {
        margin: 0;
        padding: 0;
    }

    .security-icons {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .security-icons svg {
        width: 20px;
        height: 20px;
    }

    .payment-badge {
        font-size: 11px;
        padding: 5px 10px;
        gap: 6px;
    }

    .payment-icon {
        font-size: 14px;
    }

    .pix-icon svg {
        width: 20px;
        height: 20px;
    }

    .special-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .stat-number {
        font-size: 24px;
    }

    .faq-title {
        font-size: 22px;
    }

    .faq-question {
        font-size: 14px;
        padding: 14px 16px;
    }

    .final-cta-card h2 {
        font-size: 22px;
    }

    .final-cta-card {
        padding: 28px 20px;
    }
}

/* Footer */
.footer {
    background: var(--mz-green-700);
    color: var(--mz-cream);
    padding: 48px 20px 24px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-logo {
    text-align: center;

}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-content {
    text-align: center;
    margin-bottom: 32px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--mz-cream);
    margin-bottom: 8px;
}

.footer-subtitle {
    font-size: 16px;
    color: var(--mz-cream);
    opacity: 0.9;
    margin-bottom: 32px;
}

.footer-contacts {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 241, 182, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: var(--mz-cream);
    transition: all 0.3s ease;
    min-width: 280px;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--mz-cream);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--mz-cream);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 15px;
    font-weight: 600;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 241, 182, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--mz-cream);
    opacity: 0.7;
    margin: 0;
}

@media (max-width: 650px) {
    .footer {
        padding: 40px 20px 20px;
        margin-top: 48px;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .footer-contacts {
        flex-direction: column;
        gap: 16px;
    }

    .footer-contact-item {
        min-width: 100%;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}