@media (max-width: 900px) {
    .benefits-flex-wrapper {
        flex-direction: column;
        gap: 24px !important;
        padding: 0 8px 32px 8px !important;
        align-items: stretch !important;
    }
    .famoso-benefit-video {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: 100vw;
        min-height: 320px;
        max-height: none;
        margin: 0 auto 0 auto;
        padding: 0;
        border-radius: 0;
        display: flex;
        align-items: stretch;
        justify-content: stretch;
        background: #222;
        box-shadow: 0 8px 32px #0002;
    }
    .famoso-benefit-video video {
        width: 100%;
        height: 100%;
        aspect-ratio: 4/5;
        border-radius: 0;
        object-fit: cover;
        display: block;
        background: #000;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
        margin: 0 auto;
    }
}
/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(130deg, #ff6b6b, #ff8e53, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('/images/image 9.png') center/cover no-repeat;
    text-align: center;
    padding: 40px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(20,0,40,0.85) 0%, rgba(0,0,0,0.9) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-video {
    flex: 1;
    max-width: 550px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(255, 107, 107, 0.3), 0 0 0 4px rgba(255, 107, 107, 0.2);
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    margin-top: 16px;
    color: #ff8e53;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.video-caption i {
    font-size: 18px;
    animation: pulse 2s infinite;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #b0b0b0;
    margin-bottom: 28px;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
}

.feature-item i {
    color: #4ade80;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 18px 48px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 107, 107, 0);
    }
}

.guarantee-text {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}

.guarantee-text i {
    color: #4ade80;
    margin-right: 8px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: #888;
    font-size: 24px;
}

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

/* Section Titles */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    border: 1px solid #222;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b6b;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 142, 83, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #888;
    font-size: 0.95rem;
}

/* Virtual Influencers Section */
.virtual-influencers {
    padding: 100px 0;
    background: #fff;
    color: #000;
}

.vi-header {
    text-align: center;
    margin-bottom: 40px;
}

.vi-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #000;
    line-height: 1.3;
    margin-bottom: 16px;
}

.gradient-text-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706, #b45309);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vi-subtitle {
    font-size: 1.1rem;
    color: #f59e0b;
    font-style: italic;
}

.vi-case-study {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.vi-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.vi-description strong {
    color: #000;
}

.highlight-gold {
    color: #d97706 !important;
}

.highlight-text {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.vi-showcase {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Profile Card - Instagram Style */
.vi-profile-card {
    background: #000;
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 400px;
    color: #fff;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    padding: 3px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #000;
}

.profile-info {
    flex: 1;
}

.profile-username {
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.profile-buttons {
    display: flex;
    gap: 8px;
}

.btn-follow {
    background: #0095f6;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.btn-message {
    background: #363636;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    padding: 16px 0;
    border-top: 1px solid #262626;
    border-bottom: 1px solid #262626;
    margin-bottom: 16px;
}

.profile-stats .stat {
    text-align: center;
}

.profile-stats .stat strong {
    display: block;
    font-size: 1.1rem;
}

.profile-stats .stat span {
    font-size: 0.85rem;
    color: #a8a8a8;
}

.profile-bio {
    font-size: 0.9rem;
    line-height: 1.6;
}

.profile-bio p {
    margin-bottom: 4px;
}

/* Gallery Grid */
.vi-gallery {
    flex: 1;
    max-width: 500px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    justify-items: center; /* center contents of each cell */
    align-items: center;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Protected Images - Background Image Style */
.image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.avatar-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    padding: 3px;
    overflow: hidden;
}

/* Protected image overlay */


/* CTA */
.vi-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 2px dashed #e5e5e5;
}

.vi-cta-text {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: #000;
}

.vi-cta .cta-button {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.vi-cta .cta-button:hover {
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0a20 0%, #0a0a0a 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus, .stat-percent {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    color: #888;
    font-size: 1rem;
    margin-top: 8px;
}

/* Offer Section */
.offer {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.offer-content {
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid #222;
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.offer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e53, #ffb347);
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.offer-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 16px;
}

.offer-description {
    color: #888;
    margin-bottom: 40px;
}

.price-box {
    background: linear-gradient(145deg, #222 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
}

.original-price {
    margin-bottom: 8px;
}

.price-label {
    color: #888;
    font-size: 14px;
    display: block;
}

.price-old {
    color: #666;
    text-decoration: line-through;
    font-size: 1.5rem;
}

.current-price {
    margin-top: 12px;
}

.price-value {
    font-size: 3rem;
    color: #4ade80;
}

.price-value strong {
    font-size: 4rem;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ef4444;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.offer-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.offer-includes li {
    padding: 12px 0;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-includes li i {
    color: #4ade80;
    font-size: 18px;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #000;
    padding: 24px 60px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    justify-content: center;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 222, 128, 0.4);
}

.payment-methods {
    margin-top: 30px;
    color: #666;
}

.payment-methods p {
    margin-bottom: 12px;
    font-size: 14px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 32px;
    color: #444;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    text-align: left;
}

.guarantee-box i {
    font-size: 40px;
    color: #4ade80;
}

.guarantee-box strong {
    display: block;
    margin-bottom: 4px;
}

.guarantee-box p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
}

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

.testimonial-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    border: 1px solid #222;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #333;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    font-size: 24px;
    color: white;
}

.testimonial-info h4 {
    margin-bottom: 4px;
}

.stars {
    color: #fbbf24;
}

.testimonial-card p {
    color: #b0b0b0;
    font-style: italic;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

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

.faq-item {
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #222;
}

.faq-question span {
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #ff6b6b;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #888;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0a20 0%, #0a0a0a 50%, #1a0a20 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.final-cta p {
    color: #888;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer p {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px !important;
    max-width: 600px;
    margin: 0 auto;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid #333;
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #ff6b6b;
}

.modal-content {
    padding: 40px 30px;
    text-align: center;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal-icon i {
    font-size: 36px;
    color: white;
}

.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.modal-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.modal-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #222;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
}

.modal-info-item i {
    color: #ff6b6b;
}

.modal-bonus {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 142, 83, 0.1));
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.modal-bonus h3 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.modal-bonus ul {
    list-style: none;
}

.modal-bonus li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #b0b0b0;
}

.modal-bonus li i {
    color: #ff8e53;
}

.modal-price {
    margin-bottom: 24px;
}

.modal-price-old {
    color: #666;
    text-decoration: line-through;
    font-size: 1.25rem;
    display: block;
}

.modal-price-current {
    font-size: 3rem;
    font-weight: 800;
    color: #4ade80;
    display: block;
}

.modal-price-installment {
    color: #888;
    font-size: 14px;
}

.modal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #000;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    width: 100%;
}

.modal-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 222, 128, 0.4);
}

.modal-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #666;
    font-size: 13px;
}

.modal-guarantee i {
    color: #4ade80;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        max-width: 700px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-video {
        max-width: 100%;
        width: 100%;
    }

    .vi-showcase {
        flex-direction: column;
        align-items: center;
    }

    .vi-profile-card {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 40px;
    }

    .hero-container {
        gap: 30px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }

    .cta-button-large {
        padding: 18px 32px;
        font-size: 16px;
    }

    .offer-content {
        padding: 40px 20px;
    }

    .price-value strong {
        font-size: 3rem;
    }

    .modal-info {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .video-wrapper {
        border-radius: 16px;
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}

/* Virtual Influencers - Responsividade */
.virtual-influencers .container {
    max-width: 1200px;
    padding: 24px 16px;
}
.vi-header .vi-title {
    font-size: 1.6rem;
    line-height: 1.12;
    margin-bottom: 8px;
}
.vi-subtitle {
    color: #bdb0a8;
    margin-bottom: 18px;
}
.vi-showcase {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.vi-profile-card {
    flex: 0 0 360px;
    width: 360px;
    background: linear-gradient(180deg,#1b1620 0%, #120f14 100%);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    box-sizing: border-box;
}
.profile-header { display:flex; gap:12px; align-items:center; }
.profile-avatar { width:72px; height:72px; flex: 0 0 72px; }
.avatar-bg { width:100%; height:100%; background-size:cover; background-position:center; border-radius:12px; }
.profile-info { flex:1; }
.profile-username { display:block; font-weight:700; color:#fff; }
.profile-buttons { display:flex; gap:8px; margin-top:8px; }
.btn-follow, .btn-message { padding:8px 10px; border-radius:10px; border: none; cursor:pointer; }
.btn-follow { background: #ff8e53; color:#fff; }
.btn-message { background: transparent; color:#fff; border:1px solid rgba(255,255,255,0.08); }
.vi-gallery { flex: 1 1 560px; min-width: 220px; }
.gallery-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:12px; }
.gallery-item { border-radius:12px; overflow:hidden; height:110px; }
.image-bg { width:100%; height:100%; background-size:cover; background-position:center; }

@media (max-width: 900px) {
    .vi-header .vi-title { font-size: 1.4rem; text-align: center; }
    .vi-subtitle { text-align: center; font-size: 0.95rem; }
    .vi-showcase { flex-direction: column; gap: 18px; align-items: center; }
    .vi-profile-card { width: 100%; max-width: 520px; flex: 0 0 auto; }
    .vi-gallery { width: 100%; max-width: 820px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap:10px; }
    .gallery-item { height: 140px; }
    .vi-cta { text-align: center; }
    .vi-cta .cta-button { display: inline-flex; width: 100%; max-width: 420px; justify-content: center; }
}

@media (max-width: 420px) {
    .vi-header .vi-title { font-size: 1.15rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item { height: 120px; }
    .profile-avatar { width:58px; height:58px; }
    .btn-follow, .btn-message { padding:8px 12px; font-size:0.92rem; }
}

/* Q&A inside Virtual Influencers */
.vi-qa { margin-top: 18px; margin-bottom: 28px; display:flex; justify-content:center; }
.vi-qa-item { background: transparent; padding:0; border-radius:0; max-width:900px; width:100%; box-shadow:none; text-align:center; }
.vi-qa-title { color:#d97706; margin:0 0 8px 0; font-size:1.05rem; font-weight:700; }
.vi-qa-question { color:#000; margin:6px 0; font-weight:700; }
.vi-qa-answer { color:#333; margin:4px 0 0 0; }

/* Guarantee Section styled like virtual-influencers */
.guarantee-section { background: #fff; color: #000; padding: 60px 0; }
.guarantee-container { max-width:1100px; margin:0 auto; padding: 0 20px; }
.guarantee-inner { display:flex; gap:24px; align-items:center; background: transparent; padding:0; border-radius:0; box-shadow:none; }
.guarantee-seal { width:140px; height:140px; object-fit:contain; }
.guarantee-text h3 { color:#d97706; margin:0 0 8px 0; font-size:1.25rem; }
.guarantee-text p { color:#333; margin:0; line-height:1.6; }

@media (max-width: 900px) {
    .vi-qa-item { padding:12px; }
    .guarantee-inner { flex-direction: column; text-align:center; gap:12px; }
    .guarantee-seal { width:110px; height:110px; }
}

@media (max-width: 420px) {
    .guarantee-seal { width:78px; height:78px; }
    .guarantee-text h3 { font-size:1rem; }
}