@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-main: #141620;
    --bg-card: #1c1f2e;
    --bg-lighter: #262a3f;
    --primary: #ff3b68;
    --primary-hover: #e02f58;
    --text-main: #ffffff;
    --text-muted: #a4a9ba;
    --success: #22c55e;
    --yellow: #facc15;
    --border-color: rgba(255, 255, 255, 0.1);

    --chat-bg: #e5ddd5;
    --chat-sent: #dcf8c6;
    --chat-received: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Typography Elements */
h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.highlight {
    color: var(--primary);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #ff3b68, #ff6b8b);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    width: 100%;
    max-width: 400px;
    margin: 10px auto;
}

.btn-large {
    max-width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(255, 59, 104, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 104, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-yellow {
    background-color: var(--yellow);
    color: #000;
    box-shadow: 0 4px 14px rgba(250, 204, 21, 0.4);
}

.btn-outline {
    background-color: var(--bg-lighter);
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 12px;
        font-size: 0.95rem;
        gap: 6px;
    }

    .mobile-only-br {
        display: block;
    }
}

.mobile-only-br {
    display: none;
}

.btn-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: -5px;
}

/* Sections */
section,
header {
    padding: 60px 0;
    position: relative;
}

/* Hero Section */
.hero-section .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 59, 104, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 59, 104, 0.2);
}

/* Video Mockup */
.video-container {
    width: 100%;
    max-width: 320px;
    height: 560px;
    background-color: #000;
    margin: 30px auto;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-header {
    padding: 15px;
    text-align: left;
}

.viewers-count {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.viewers-count .dot {
    width: 6px;
    height: 6px;
    background-color: var(--success);
    border-radius: 50%;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: white;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: transform 0.2s;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-footer {
    padding: 15px;
    color: white;
    font-size: 0.8rem;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* Custom Progress Bar */
.custom-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
    z-index: 10;
}

.custom-progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--primary);
    border-radius: 0 4px 4px 0;
    /* Adicionando uma transição suave entre as atualizações do javascript */
    transition: width 0.1s linear;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Active Users */
.active-users {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    background-color: #1a1525;
    padding: 10px 25px 10px 10px;
    border-radius: 50px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    margin-left: -15px;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.users-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.users-info svg {
    color: var(--text-muted);
}

.users-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.users-text strong {
    font-size: 1.1rem;
    line-height: 1.1;
    color: #ffffff;
}

.users-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Features Section */
.features-section {
    border-top: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 59, 104, 0.15);
    border-color: rgba(255, 59, 104, 0.4);
    background-color: rgba(28, 31, 46, 0.8);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
}

.bg-pink {
    background-color: var(--primary);
}

.bg-red {
    background-color: #ef4444;
}

.feature-icon-custom {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: white;
    background: linear-gradient(to bottom right, #d92b73, #e53935);
    box-shadow: 0 0 15px rgba(217, 43, 115, 0.4);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Social Proof */
.social-proof-section {
    border-top: 1px solid var(--border-color);
}

.carousel-wrapper {
    margin: 40px auto;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel-container {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255, 59, 104, 0.4);
    border: 1px solid rgba(255, 59, 104, 0.1);
    background-color: transparent;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.testimonial-img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Controls CSS Overlay */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease;
}

.carousel-control:hover {
    background: rgba(255, 59, 104, 0.8);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-nav {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    background-color: #4a4d5e;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background-color: var(--primary);
    width: 20px;
    border-radius: 4px;
}

.chat-mockup {
    background-color: var(--chat-bg);
    max-width: 400px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    color: #111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chat-header {
    background-color: #075e54;
    color: white;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-back {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.chat-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.contact-avatar {
    width: 36px;
    height: 36px;
    background-color: #ccc;
    border-radius: 50%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-status {
    font-size: 0.7rem;
    opacity: 0.8;
}

.chat-actions {
    display: flex;
    gap: 15px;
}

.chat-body {
    padding: 20px 15px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAARElEQVQ4y2NgGAWjYBSMAuwAm5n/MwzEgP///0MxEwP1XKAaGEcxikEXA2O6A8SAUf9H/R/1f9T/Uf9H/R/1/8B4vwEAd6wg56A6WcMAAAAASUVORK5CYII=');
    background-size: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 400px;
    overflow-y: auto;
}

.message {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    position: relative;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
    text-align: left;
}

.message .time {
    font-size: 0.65rem;
    color: #999;
    float: right;
    margin-top: 5px;
    margin-left: 10px;
}

.received {
    align-self: flex-start;
    background-color: var(--chat-received);
    border-top-left-radius: 0;
}

.sent {
    align-self: flex-end;
    background-color: var(--chat-sent);
    border-top-right-radius: 0;
}

.emoji-message {
    background-color: transparent;
    box-shadow: none;
    font-size: 2rem;
    padding: 0;
}

.movie-posters {
    background-color: #333;
    width: 150px;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.chat-dots {
    background-color: #f0f0f0;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.chat-dots .dot {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
}

.chat-dots .dot.active {
    background-color: var(--primary);
}

/* Pricing Section */
.pricing-section {
    background-color: var(--bg-card);
    border-radius: 20px;
    margin: 40px 20px;
    padding: 60px 20px;
}

.badge-yellow {
    display: inline-block;
    background-color: var(--yellow);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.pricing-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    margin: 40px 0;
}

@media (min-width: 768px) {
    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: flex-start;
    }
}

.pricing-card {
    background-color: var(--bg-main);
    border-radius: 16px;
    padding: 30px 15px;
    text-align: left;
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

@media (min-width: 480px) {
    .pricing-card {
        padding: 30px 20px;
    }
}

.pricing-card.basic {
    background-color: #2b303d;
    border-color: rgba(255, 255, 255, 0.05);
}

.pricing-card.vip {
    background: linear-gradient(135deg, var(--primary), #cc2f53);
    border: none;
    z-index: 2;
}

@media (min-width: 768px) {
    .pricing-card.vip {
        transform: scale(1.05);
    }
}

.best-offer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--yellow);
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 800;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-weight: 800;
    margin-bottom: 20px;
}

.currency {
    font-size: 1.5rem;
}

.amount {
    font-size: 3.5rem;
    letter-spacing: -2px;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.vip .period {
    color: rgba(255, 255, 255, 0.8);
}

.old-price {
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.7;
    text-align: center;
}

.urgency-banner {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    margin-top: 20px;
    flex: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.features-list .locked {
    color: var(--text-muted);
}

.whatsapp-alert {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    margin: 30px 0;
}

.whatsapp-alert .alert-text {
    display: flex;
    flex-direction: column;
}

.whatsapp-alert .alert-text strong {
    color: var(--success);
    font-size: 0.95rem;
}

.whatsapp-alert .alert-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Guarantee Section */
.guarantee-card {
    background-color: var(--bg-card);
    padding: 40px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 59, 104, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.guarantee-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* FAQ Section */
.faq-list {
    margin-top: 40px;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-top: 0;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 15px;
}

/* Footer */
.footer {
    text-align: center;
    padding-bottom: 40px;
}

.footer h2 {
    margin-bottom: 20px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 40px;
}