﻿
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --border-color: #333;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666;
    --primary: #e1306c;
    --primary-hover: #c13584;
    --success: #10b981;
    --gradient-instagram: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    --gradient-cta: linear-gradient(135deg, #e1306c 0%, #c13584 100%);
    --gold-border: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 5rem;
        right: 5rem;
        width: 500px;
        height: 500px;
        background: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path d="M 50 180 Q 80 100 150 50" stroke="%2310b981" stroke-width="8" fill="none" stroke-linecap="round"/><polygon points="145,35 165,55 140,55" fill="%2310b981"/></svg>');
        opacity: 0.2;
        animation: float 6s ease-in-out infinite;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.instagram-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-instagram);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: float 3s ease-in-out infinite;
}

    .instagram-icon svg {
        width: 40px;
        height: 40px;
        fill: white;
    }

h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.gradient-text {
    background: var(--gradient-instagram);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

    .hero-subtitle span {
        font-weight: 600;
    }

.hero-stats {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

    .hero-stats span {
        color: var(--primary);
        font-weight: 700;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-cta);
    color: white;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.5);
}

    .btn-primary:hover {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(225, 48, 108, 0.7);
    }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--border-color);
}

    .btn-secondary:hover {
        background: #222;
    }

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-affiliate {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

/* Products Grid */
.products {
    padding: 2rem 1rem 5rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    padding-top: 3rem;
}

    .product-card:hover {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
        border-color: #ffd700;
    }

.product-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.badge-flash {
    background: #ef4444;
    color: white;
}

.badge-economic {
    background: #3b82f6;
    color: white;
}

.badge-recommended {
    background: #10b981;
    color: white;
}

.badge-top {
    background: #06b6d4;
    color: white;
}

.badge-special {
    background: #ec4899;
    color: white;
}

.badge-premium {
    background: #8b5cf6;
    color: white;
}

.badge-vip {
    background: linear-gradient(135deg, #eab308 0%, #f59e0b 100%);
    color: white;
}

.badge-diamond {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: white;
}

.badge-elite {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.badge-mega {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    color: white;
}

.product-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-instagram);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: float 3s ease-in-out infinite;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.product-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1rem;
}

.product-viewers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
}

.price-details {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.price-old {
    text-decoration: line-through;
}

.price-new {
    color: var(--success);
    font-weight: 600;
}

.product-sales {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.sales-count {
    color: var(--success);
    font-weight: 700;
}

/* Testimonials */
.testimonials {
    padding: 4rem 1rem;
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.star {
    color: #fbbf24;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.testimonial-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    background: var(--bg-card);
}

    .video-container video {
        width: 100%;
        aspect-ratio: 9/16;
        object-fit: cover;
    }

/* Sale Notification */
.sale-notification {
    position: fixed;
    left: 1.5rem;
    top: 5rem;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    min-width: 240px;
    z-index: 100;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    gap: 0.75rem;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.notification-location {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.notification-action {
    font-size: 0.75rem;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.notification-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

    .modal.active {
        display: flex;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .modal-close:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-summary {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

    .modal-summary h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .modal-summary .price {
        font-size: 2rem;
        font-weight: 900;
    }

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-input:focus {
        outline: none;
        border-color: var(--primary);
    }

.form-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.offer-box {
    background: rgba(239, 68, 68, 0.1);
    border: 2px dashed #ef4444;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ef4444;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.offer-text {
    color: white;
    font-weight: 600;
}

.offer-price {
    color: #ef4444;
}

.offer-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-breakdown {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

    .price-row:last-child {
        margin-bottom: 0;
        padding-top: 0.75rem;
        border-top: 1px solid var(--border-color);
        font-weight: 700;
        font-size: 1.1rem;
    }

.confirmation-box {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.confirmation-icon {
    width: 64px;
    height: 64px;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.confirmation-question {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.confirmation-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.button-group {
    display: flex;
    gap: 1rem;
}

    .button-group .btn {
        flex: 1;
    }

.qr-code-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .qr-code-container img {
        width: 100%;
        max-width: 300px;
    }

.pix-code-group {
    margin-bottom: 1.5rem;
}

.pix-code-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
}

.pix-code {
    flex: 1;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .copy-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

.payment-info {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.payment-success {
    color: var(--success);
    font-weight: 600;
    margin-bottom: 1rem;
}

.payment-waiting {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ef4444;
    font-size: 0.9rem;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-top-color: #ef4444;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Support Button */
.support-btn {
    position: fixed;
    bottom: 5rem;
    right: 1.5rem;
    z-index: 100;
    background: #ef4444;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

    .support-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(239, 68, 68, 0.6);
    }

.support-text {
    text-align: left;
}

.support-title {
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

.support-hours {
    font-size: 0.65rem;
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Affiliate Button */
.affiliate-btn {
    position: fixed;
    bottom: 9rem;
    right: 1.5rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.affiliate-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    animation: pulse 2s ease-in-out infinite;
}

.affiliate-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

    .affiliate-icon-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(16, 185, 129, 0.6);
    }

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .sale-notification {
        left: 1rem;
        right: 1rem;
        min-width: auto;
    }

    .support-btn,
    .affiliate-btn {
        right: 1rem;
    }
}
