* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background-color: #000;
            color: #fff;
            -webkit-font-smoothing: antialiased;
        }

        /* Variables */
        :root {
            --primary: #FF9000;
            --primary-hover: #e68200;
            --background: #000;
            --card: #1a1a1a;
            --border: #333;
            --text: #fff;
            --text-muted: #888;
            --success: #22c55e;
            --destructive: #ef4444;
        }

        /* Header */
        .header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: var(--background);
            border-bottom: 1px solid var(--border);
        }

        .header-content {
            max-width: 480px;
            margin: 0 auto;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-men {
            font-size: 24px;
            font-weight: bold;
            color: var(--text);
        }

        .logo-hub {
            font-size: 24px;
            font-weight: bold;
            background: var(--primary);
            color: #000;
            padding: 2px 8px;
            border-radius: 4px;
        }

        .menu-btn {
            position: absolute;
            right: 16px;
            background: none;
            border: none;
            color: var(--text);
            cursor: pointer;
            padding: 8px;
        }

        /* Trustpilot Badge */
        .trustpilot-bar {
            background: var(--card);
            padding: 12px 16px;
        }

        .trustpilot-content {
            max-width: 480px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .stars {
            display: flex;
            gap: 2px;
        }

        .star {
            width: 20px;
            height: 20px;
            background: var(--success);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .star svg {
            width: 12px;
            height: 12px;
            fill: #fff;
        }

        .trustpilot-text {
            font-size: 14px;
            color: var(--text-muted);
        }

        .trustpilot-text span {
            color: var(--text);
            font-weight: 600;
        }

        /* Headline Section */
        .headline-section {
            padding: 32px 16px;
            text-align: center;
        }

        .headline-section h1 {
            max-width: 480px;
            margin: 0 auto;
            font-size: 28px;
            line-height: 1.2;
            font-weight: bold;
        }

        .headline-section .highlight {
            color: var(--primary);
        }

        /* Video Section */
        .video-section {
            padding: 24px 16px;
        }

        .video-container {
            max-width: 400px;
            margin: 0 auto;
        }

        .video-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            background: #000;
            aspect-ratio: 9/16;
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
            color: var(--text-muted);
            font-size: 14px;
        }

        .viewers-counter {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 16px;
        }

        .live-dot {
            width: 10px;
            height: 10px;
            background: var(--destructive);
            border-radius: 50%;
            animation: pulse-live 1.5s ease-in-out infinite;
        }

        @keyframes pulse-live {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.15); }
        }

        .viewers-text {
            font-size: 14px;
            color: var(--text-muted);
        }

        .viewers-text span {
            color: var(--text);
            font-weight: 600;
        }

        /* Products Section */
        .products-section {
            padding: 48px 16px;
            display: none;
        }

        /* Guarantee Section - também escondida */
        .guarantee-section {
            background: var(--card);
            padding: 48px 16px;
            text-align: center;
            display: none;
        }

        .products-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .products-header h2 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .products-header p {
            color: var(--text-muted);
        }

        .products-header .highlight {
            color: var(--primary);
            font-weight: 600;
        }

        .products-container {
            max-width: 350px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        /* Product Card */
        .product-card {
            background: var(--card);
            border-radius: 16px;
            padding: 20px;
            position: relative;
            border: 3px solid var(--text-muted);
        }

        .product-card.best {
            border-color: var(--primary);
        }

        .product-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--text-muted);
            color: var(--card);
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            white-space: nowrap;
        }

        .product-card.best .product-badge {
            background: var(--primary);
            color: #000;
        }

        .guarantee-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--success);
            color: #fff;
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .product-image {
            text-align: center;
            margin: 24px 0 16px;
        }

        .product-image img {
            height: 180px;
            width: auto;
            object-fit: contain;
        }

        .product-title {
            text-align: center;
            margin-bottom: 12px;
        }

        .product-title h3 {
            font-size: 24px;
            margin-bottom: 4px;
        }

        .product-title p {
            color: var(--text-muted);
        }

        .product-price {
            text-align: center;
            font-size: 28px;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .product-savings {
            text-align: center;
            color: var(--success);
            font-weight: bold;
            margin-bottom: 8px;
            animation: pulse-scale 1.5s infinite;
        }

        @keyframes pulse-scale {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.03); }
        }

        .product-total {
            text-align: center;
            margin-bottom: 8px;
        }

        .product-total .old-price {
            color: var(--text-muted);
            text-decoration: line-through;
            font-size: 18px;
        }

        .product-total .new-price {
            font-size: 24px;
            font-weight: bold;
            margin-left: 8px;
        }

        .product-shipping {
            text-align: center;
            font-size: 14px;
            margin-bottom: 16px;
        }

        .product-shipping.free {
            color: var(--success);
            font-weight: 600;
        }

        .product-shipping.paid {
            color: var(--text-muted);
        }

        .add-to-cart-btn {
            width: 100%;
            padding: 16px;
            background: var(--primary);
            color: #000;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.2s;
        }

        .add-to-cart-btn:hover {
            background: var(--primary-hover);
        }

        .payment-methods {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 16px;
            color: var(--text-muted);
            font-size: 12px;
        }

        /* Guarantee Icon */
        .guarantee-icon {
            width: 80px;
            height: 80px;
            background: rgba(34, 197, 94, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .guarantee-icon svg {
            width: 40px;
            height: 40px;
            color: var(--success);
        }

        .guarantee-section h2 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .guarantee-section h3 {
            color: var(--primary);
            font-size: 20px;
            margin-bottom: 16px;
        }

        .guarantee-section p {
            max-width: 480px;
            margin: 0 auto;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 48px 16px;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .reviews-header h2 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .reviews-header p {
            color: var(--text-muted);
        }

        .reviews-container {
            max-width: 480px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .review-card {
            background: var(--card);
            border-radius: 12px;
            padding: 16px;
            border: 1px solid var(--border);
        }

        .review-header {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .review-avatar {
            width: 48px;
            height: 48px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            color: var(--text-muted);
            flex-shrink: 0;
        }

        .review-content {
            flex: 1;
        }

        .review-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 8px;
        }

        .review-name {
            font-weight: 600;
        }

        .review-location {
            font-size: 12px;
            color: var(--text-muted);
        }

        .review-stars {
            display: flex;
            gap: 2px;
        }

        .review-stars svg {
            width: 16px;
            height: 16px;
            fill: var(--primary);
        }

        .review-text {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* Bottom Trustpilot */
        .bottom-trustpilot {
            background: var(--card);
            padding: 16px;
            text-align: center;
        }

        .bottom-trustpilot-content {
            max-width: 480px;
            margin: 0 auto;
        }

        .bottom-trustpilot .rating-line {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .bottom-trustpilot .rating-line span {
            font-weight: 600;
        }

        .bottom-trustpilot p {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* Footer */
        .footer {
            border-top: 1px solid var(--border);
            padding: 32px 16px;
            text-align: center;
        }

        /* Comments Section - Facebook Style */
        .comments-section {
            padding: 24px 16px;
            background: #fff;
            max-width: 600px;
            margin: 0 auto;
        }

        .comments-header {
            font-size: 14px;
            color: #65676b;
            font-weight: 600;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid #ddd;
        }

        .comments-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .comment {
            display: flex;
            gap: 8px;
        }

        .comment-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .comment-avatar.small {
            width: 32px;
            height: 32px;
        }

        .comment-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .comment-content {
            flex: 1;
        }

        .comment-author {
            font-weight: 600;
            font-size: 13px;
            color: #050505;
            margin-bottom: 2px;
        }

        .comment-text {
            font-size: 15px;
            color: #050505;
            line-height: 1.4;
            margin-bottom: 4px;
        }

        .comment-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: #65676b;
        }

        .comment-actions .action {
            font-weight: 600;
            cursor: pointer;
        }

        .comment-actions .action:hover {
            text-decoration: underline;
        }

        .comment-actions .likes {
            color: #1877f2;
            font-weight: 600;
        }

        .comment-actions .time {
            color: #65676b;
        }

        .comment-reply {
            display: flex;
            gap: 8px;
            margin-top: 12px;
            margin-left: 0;
            padding-left: 0;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .footer-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 16px;
            font-size: 14px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--text);
        }

        .footer-links span {
            color: var(--text-muted);
        }

        .footer-disclaimer {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 16px;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-copyright {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* Star SVG */
        .star-svg {
            width: 100%;
            height: 100%;
        }