body {
            font-family: Arial, Helvetica, sans-serif;
            background-color: #f0f9ff;
            color: #06283d;
            margin: 0;
            padding: 0;
            text-align: center;
        }

        .headline {
            background: linear-gradient(90deg, #0b63a6, #1ec6ff);
            color: #ffffff;
            padding: 40px 20px;
            font-size: 26px;
            font-weight: bold;
            line-height: 1.4;
        }

        .video-section {
            margin: 40px auto 20px auto;
            max-width: 800px;
            width: 90%;
        }

        /* SECCIÓN DE CARDS DE OFERTAS */

        .discountSection{
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .bb-section {
            background: radial-gradient(circle at top, #e9f8ff 0, #f0fdff 60%);
            color: #06283d;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            padding: 40px 16px 60px;
        }

        /* Steps */
        .bb-steps {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 24px;
        }

        .bb-step {
            border-radius: 999px;
            border: 1px solid #4b5563;
            padding: 6px 18px;
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #e5e7eb;
        }

        .bb-step--active {
            background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
            border-color: transparent;
            color: #f9fafb;
        }

        /* Título */
        .bb-section-header {
            text-align: center;
            margin-bottom: 28px;
        }

        .bb-section-header h3 {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .bb-divider {
            width: 80px;
            height: 3px;
            margin: 12px auto 0;
            border-radius: 999px;
            background: linear-gradient(90deg, #0ea5e9, #22c55e);
        }

        /* Cards */
        .bb-packages {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto 40px;
        }

        @media (max-width: 968px) {
            .bb-packages {
                grid-template-columns: 1fr;
            }
        }

        .bb-card {
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid #dceefb;
            box-shadow: 0 12px 30px rgba(3, 60, 90, 0.06);
            padding: 16px 18px 20px;
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .bb-card--best {
            border: 1px solid #00bcd4;
            box-shadow: 0 10px 30px rgba(0, 188, 212, 0.08);
            transform: translateY(-4px);
        }

        .bb-card-tag {
            position: absolute;
            top: -14px;
            left: 16px;
            background: linear-gradient(135deg, #00bcd4, #1ec6ff);
            color: #022a31;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 999px;
        }

        /* Conteúdo interno */
        .bb-card-body {
            display: grid;
            grid-template-columns: 1.1fr 1.2fr;
            gap: 14px;
            align-items: center;
        }

        @media (max-width: 600px) {
            .bb-card-body {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        .bb-card-left h4 {
            font-size: 18px;
            font-weight: 700;
        }

        .bb-supply {
            font-size: 13px;
            color: #9ca3af;
            margin-bottom: 8px;
        }

        .bb-product-img {
            max-width: 140px;
            width: 100%;
        }

        /* Preços */
        .bb-price-per-bottle {
            display: flex;
            align-items: baseline;
            gap: 6px;
            justify-content: flex-start;
        }

        .bb-price {
            font-size: 32px;
            font-weight: 800;
            color: #012a36;
        }

        .bb-price-label {
            font-size: 12px;
            text-transform: uppercase;
            color: #5b8fa6;
            line-height: 1.2;
        }

        .bb-save {
            font-size: 12px;
            text-transform: uppercase;
            color: #0077b6;
            font-weight: 600;
            margin-top: 4px;
        }

        .bb-save--highlight {
            color: #22c55e;
        }

        .bb-label {
            font-size: 11px;
            text-transform: uppercase;
            color: #e5e7eb;
            margin-top: 4px;
        }

        .bb-label--accent {
            color: #00bcd4;
        }

        .bb-cards-img {
            max-width: 140px;
            margin: 10px 0;
        }

        .bb-total {
            font-size: 13px;
            margin-top: 4px;
        }

        .bb-total-old {
            text-decoration: line-through;
            color: #ef4444;
            margin-left: 4px;
            margin-right: 6px;
        }

        .bb-total-new {
            color: #22c55e;
            font-weight: 700;
        }

        .bb-shipping {
            font-size: 12px;
            color: #9ca3af;
            margin-top: 4px;
        }

        .bb-shipping--free {
            color: #22c55e;
            font-weight: 600;
        }

        /* Botões */
        .bb-btn {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 8px;
            padding: 10px 18px;
            border-radius: 999px;
            border: 0;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            background: linear-gradient(135deg, #1ec6ff, #00a3d9);
            color: #02303a;
            box-shadow: 0 10px 25px rgba(3, 60, 90, 0.12);
            transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
        }

        .bb-btn--primary {
            background: linear-gradient(135deg, #00bcd4, #1ec6ff);
            color: #012a36;
        }

        .bb-btn:hover {
            transform: translateY(-1px);
            filter: brightness(1.05);
            box-shadow: 0 16px 35px rgba(15, 23, 42, 1);
        }

        /* Garantia */
        .bb-guarantee {
            max-width: 1100px;
            margin: 32px auto 0;
            padding: 20px 18px;
            border-radius: 16px;
            border: 1px solid #dceefb;
            background: radial-gradient(circle at left, #e9f8ff 0, #f0fdff 60%);
            display: grid;
            grid-template-columns: 0.9fr 2fr;
            gap: 16px;
            align-items: center;
        }

        @media (max-width: 768px) {
            .bb-guarantee {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        .bb-guarantee-img {
            max-width: 260px;
            width: 100%;
        }

        .bb-guarantee-text h3 {
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 6px;
        }

        .bb-guarantee-text p {
            font-size: 14px;
            color: #d1d5db;
        }

        .comments-section {
            background: #fff;
            border-top: 3px solid #00bcd4;
            max-width: 800px;
            margin: 50px auto;
            padding: 20px;
            text-align: left;
            border-radius: 6px;
            box-shadow: 0 0 10px rgba(3, 60, 90, 0.04);
        }

        .comments-section h3 {
            color: #232D3D;
            margin-bottom: 25px;
        }

        .fb-comment {
            display: flex;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }

        .fb-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }

        .fb-name {
            font-weight: bold;
            color: #232D3D;
        }

        .fb-text {
            margin: 5px 0;
            line-height: 1.4;
        }

        .fb-actions {
            font-size: 13px;
            color: #65676b;
        }

        .fb-actions span {
            margin-right: 10px;
            cursor: pointer;
        }

        .fb-actions span:hover {
            color: #00a3d9;
        }