        /* TikTok Font Faces */
        @font-face {
            font-family: 'TikTokFont';
            src: url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokFont-Regular.woff2') format('woff2'),
                url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokFont-Regular.woff') format('woff'),
                url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokFont-Regular.otf') format('opentype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'TikTokFont';
            src: url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokFont-Semibold.woff2') format('woff2'),
                url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokFont-Semibold.woff') format('woff'),
                url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokFont-Semibold.otf') format('opentype');
            font-weight: 600;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'TikTokFont';
            src: url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokFont-Bold.woff2') format('woff2'),
                url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokFont-Bold.woff') format('woff'),
                url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokFont-Bold.otf') format('opentype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'TikTokDisplayFont';
            src: url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokDisplayFont-Regular.woff2') format('woff2'),
                url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokDisplayFont-Regular.woff') format('woff'),
                url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokDisplayFont-Regular.otf') format('opentype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'TikTokDisplayFont';
            src: url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokDisplayFont-Semibold.woff2') format('woff2'),
                url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokDisplayFont-Semibold.woff') format('woff'),
                url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokDisplayFont-Semibold.otf') format('opentype');
            font-weight: 600;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'TikTokDisplayFont';
            src: url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokDisplayFont-Bold.woff2') format('woff2'),
                url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokDisplayFont-Bold.woff') format('woff'),
                url('https://tenisfriday.shop/store/promo-50-anos/fonts/TikTokDisplayFont-Bold.otf') format('opentype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'TikTokFont', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.4;
        }

        .container {
            max-width: 100vw;
            background: white;
            min-height: 100vh;
        }

        /* Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            background: white;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #f0f0f0;
        }

        .header-left {
            font-size: 24px;
            font-weight: bold;
        }

        .header-right {
            display: flex;
            gap: 20px;
            font-size: 24px;
        }

        /* Product Image Section */
        .product-images {
            position: relative;
            background: white;
        }

        .image-container {
            position: relative;
            width: 100%;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease-in-out;
            background: #f8f9fa;
            cursor: default;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }

        .image-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: none;
            color: #666;
            font-size: 14px;
        }

        .image-loading.show {
            display: block;
        }

        .image-counter {
            position: absolute;
            bottom: 16px;
            right: 16px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 2px 8px;
            /* Mais reduzido */
            border-radius: 10px;
            /* Mais reduzido */
            font-size: 11px;
            /* AINDA MENOR */
            font-family: 'TikTokFont', sans-serif;
        }

        .image-nav-buttons {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 12px;
            pointer-events: none;
        }

        .nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            pointer-events: all;
            transition: all 0.2s ease-in-out;
            backdrop-filter: blur(4px);
        }

        .nav-btn:hover {
            background: rgba(0, 0, 0, 0.7);
            transform: scale(1.1);
        }

        .nav-btn:active {
            transform: scale(0.95);
        }

        .nav-btn.disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .image-thumbnails {
            display: none !important;
        }

        .image-thumbnails::-webkit-scrollbar {
            display: none;
        }

        .thumbnail {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
        }

        .thumbnail.active {
            border-color: #00d4aa;
            box-shadow: 0 0 0 1px rgba(0, 212, 170, 0.3);
        }

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

        .thumbnail:hover {
            transform: scale(1.05);
        }

        .image-dots {
            display: none !important;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: all 0.2s ease-in-out;
        }

        .dot.active {
            background: #00d4aa;
            transform: scale(1.2);
        }

        .dot:hover {
            background: rgba(0, 212, 170, 0.7);
        }

        /* Price Section */
        .price-section {
            padding: 16px;
            background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
            color: white;
        }

        .price-main {
            font-family: 'TikTokDisplayFont', 'TikTokFont', sans-serif;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 4px;
            line-height: 1.2;
            white-space: nowrap;
        }

        .price-savings {
            font-size: 16px;
            opacity: 0.9;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .price-info {
            flex: 1;
        }

        .flash-deal-container {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 6px;
        }

        .flash-deal-text {
            font-family: 'TikTokFont', sans-serif;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.2);
            padding: 4px 12px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
        }

        .countdown {
            font-size: 16px;
            font-weight: 700;
            color: white;
            text-align: right;
        }

        /* Discount Banner */
        .discount-banner {
            background: white;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #f0f0f0;
        }

        .discount-content {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: nowrap;
        }

        .discount-badge {
            background: #ff6b6b;
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }

        .discount-text {
            color: #ff6b6b;
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
        }

        /* Product Info */
        .product-info {
            padding: 16px;
        }

        .product-title {
            font-family: 'TikTokDisplayFont', 'TikTokFont', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .rating-section {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .stars {
            color: #ffc107;
            font-size: 16px;
        }

        .rating-text {
            color: #666;
            font-size: 14px;
        }

        /* Shipping Info */
        .shipping-info {
            padding: 16px;
            border-top: 1px solid #f0f0f0;
        }

        .shipping-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
        }

        .shipping-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .shipping-details {
            flex: 1;
        }

        .shipping-free {
            color: #00d4aa;
            font-weight: 600;
            font-size: 16px;
        }

        .shipping-date {
            color: #666;
            font-size: 14px;
        }

        .shipping-fee {
            color: #999;
            font-size: 14px;
            text-decoration: line-through;
        }

        /* Tabs */
        .tabs {
            display: flex;
            background: white;
            border-bottom: 1px solid #f0f0f0;
            position: sticky;
            top: 57px;
            z-index: 99;
        }

        .tab {
            font-family: 'TikTokFont', sans-serif;
            flex: 1;
            padding: 16px 8px;
            text-align: center;
            font-size: 14px;
            color: #666;
            border-bottom: 2px solid transparent;
            cursor: pointer;
        }

        .tab.active {
            color: #333;
            font-weight: 600;
            border-bottom-color: #333;
        }

        /* Content Sections */
        .content-section {
            padding: 16px;
            display: none;
        }

        .content-section.active {
            display: block;
        }

        /* Options Section */
        .options-section {
            padding: 16px;
            border-top: 1px solid #f0f0f0;
        }

        .section-title {
            font-family: 'TikTokFont', sans-serif;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .option-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 8px;
            margin-bottom: 20px;
        }

        .option-item {
            aspect-ratio: 1;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

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

        .option-item.available {
            border-color: #00d4aa;
            box-shadow: 0 0 0 2px rgba(0, 212, 170, 0.2);
        }

        .option-item.sold-out {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .option-item.sold-out img {
            filter: grayscale(100%);
        }

        .sold-out-badge {
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            background: #ff2d55;
            color: white;
            font-size: 8px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 10px;
            font-family: 'TikTokFont', sans-serif;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 16px;
        }

        .reviews-header {
            display: flex;
            justify-content: between;
            align-items: center;
            margin-bottom: 16px;
        }

        .reviews-title {
            font-family: 'TikTokFont', sans-serif;
            font-size: 16px;
            font-weight: 600;
        }

        .reviews-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .rating-big {
            font-family: 'TikTokDisplayFont', sans-serif;
            font-size: 24px;
            font-weight: 700;
        }

        .review-item {
            padding: 16px 0;
            border-bottom: none;
            /* Remove a linha divisória */
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .review-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #ddd;
        }

        .review-name {
            font-weight: 600;
            font-size: 14px;
        }

        .review-stars {
            color: #ffc107;
            font-size: 14px;
            margin: 4px 0;
        }

        .review-variant {
            color: #666;
            font-size: 12px;
            margin-bottom: 8px;
        }

        .review-text {
            font-size: 14px;
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .review-images {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }

        .review-image {
            aspect-ratio: 1;
            border-radius: 8px;
            overflow: hidden;
        }

        .review-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .review-image img:hover {
            transform: scale(1.05);
        }

        /* Bottom Navigation */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-top: 1px solid #f0f0f0;
            display: flex;
            padding: 12px 16px;
            gap: 12px;
            z-index: 100;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            color: #666;
            text-decoration: none;
        }

        .nav-icon {
            width: 20px;
            height: 20px;
            color: #666;
        }

        .add-cart-btn {
            font-family: 'TikTokFont', sans-serif;
            flex: 1;
            background: #f0f0f0;
            color: #333;
            border: none;
            padding: 12px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 600;
        }

        .buy-btn {
            font-family: 'TikTokFont', sans-serif;
            flex: 1;
            background: #ff2d55;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 600;
        }

        /* Footer Styles */
        .footer {
            background: white;
            padding: 24px 16px;
            border-top: 1px solid #f0f0f0;
            margin-top: 40px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 24px;
        }

        .tiktok-shop-logo {
            height: 32px;
            width: auto;
        }

        .footer-sections {
            margin-bottom: 24px;
        }

        .footer-section {
            border-bottom: 1px solid #f0f0f0;
            padding: 16px 0;
        }

        .footer-header {
            font-family: 'TikTokFont', sans-serif;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            font-weight: 600;
            color: #333;
            cursor: pointer;
        }

        .chevron {
            color: #666;
            font-size: 18px;
            transition: transform 0.3s ease-in-out;
        }

        .footer-benefits {
            display: flex;
            gap: 24px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 14px;
        }

        .benefit-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .footer-apps {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .app-download img {
            height: 40px;
            border-radius: 8px;
        }

        .footer-top-button {
            display: flex;
            justify-content: center;
        }

        .top-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #ddd;
            background: white;
            color: #666;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease-in-out;
        }

        .top-button:hover {
            background: #f5f5f5;
            transform: translateY(-2px);
        }

        /* Modal de tela cheia */
        .fullscreen-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            overflow: hidden;
            opacity: 0;
            transition: opacity 0.3s ease;
            align-items: center;
            justify-content: center;
        }

        .fullscreen-modal.active {
            opacity: 1;
        }

        .fullscreen-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .fullscreen-image {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
        }

        .close-fullscreen {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
        }

        .nav-fullscreen {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .prev-fullscreen {
            left: 20px;
        }

        .next-fullscreen {
            right: 20px;
        }

        .share-overlay,
        .complaint-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
            pointer-events: none;
            touch-action: none;
        }

        .share-overlay.active,
        .complaint-overlay.active {
            opacity: 1;
            pointer-events: auto;
            touch-action: none;
        }

        .share-section,
        .complaint-section {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-radius: 20px 20px 0 0;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease-in-out;
            z-index: 10001;
            display: none;
            pointer-events: auto;
            touch-action: pan-y;
        }

        .share-section.active,
        .complaint-section.active {
            transform: translateY(0);
        }

        .share-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }

        .complaint-header {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }

        .share-title,
        .complaint-title {
            font-family: 'TikTokFont', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }

        .share-close,
        .complaint-close {
            background: none;
            border: none;
            font-size: 24px;
            color: #666;
            cursor: pointer;
            padding: 5px;
        }

        .share-options,
        .complaint-options {
            display: flex;
            overflow-x: auto;
            flex-wrap: nowrap;
            scrollbar-width: none;
            gap: 6px;
            margin-bottom: 20px;
        }

        .share-option,
        .complaint-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 10px;
            border-radius: 12px;
            transition: background-color 0.2s;
        }

        .share-option:hover,
        .complaint-option:hover {
            background-color: #f8f9fa;
        }

        .share-icon,
        .complaint-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            padding: 0; /* sem padding para igualar aos outros ícones circulares */
            background: transparent; /* ícones de imagem não precisam de cor de fundo */
        }

        /* Imagem interna do ícone dentro do wrapper circular */
        .share-icon img {
            width: 70%;
            height: 70%;
            object-fit: contain;
            display: block;
        }
        /* Aumenta levemente só o 'Copiar Link' para igualar o tamanho visual */
        .share-icon.copy img {
            width: 80%;
            height: 80%;
        }

        .share-icon.whatsapp,
        .complaint-icon.whatsapp {
            background: #25D366;
        }

        .share-icon.instagram img {
            transform: scale(2);
        }

        .share-icon.copy {
            background: transparent;
        }

        .share-icon.facebook {
            background: #1877F2;
        }

        .share-icon.twitter {
            background: #1DA1F2;
        }

        .share-icon.telegram {
            background: #0088cc;
        }

        .share-label {
            font-family: 'TikTokFont', sans-serif;
            font-size: 12px;
            color: #666;
            text-align: center;
        }

        .share-cancel {
            background: #f0f0f0;
            border: none;
            padding: 15px;
            border-radius: 12px;
            font-family: 'TikTokFont', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #333;
            width: 100%;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .share-cancel:hover {
            background: #e0e0e0;
        }

        /* Mobile specific adjustments */
        @media (max-width: 480px) {
            .price-main {
                font-size: 22px;
            }

            .price-main span {
                font-size: 18px !important;
            }

            .discount-badge {
                font-size: 11px;
                padding: 3px 6px;
            }

            .discount-text {
                font-size: 11px;
            }

            .product-title {
                font-size: 16px;
            }

            .footer-benefits {
                flex-direction: column;
                gap: 16px;
            }

            .footer-apps {
                flex-direction: column;
            }
        }

        /* iPhone specific adjustments */
        @media (max-width: 390px) {
            .price-main {
                font-size: 20px;
            }

            .price-main span {
                font-size: 16px !important;
                margin-right: 4px !important;
            }

            .discount-content {
                gap: 6px;
            }

            .discount-badge {
                font-size: 10px;
                padding: 2px 5px;
            }

            .discount-text {
                font-size: 10px;
            }
        }

        .sticky-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        #sticky-tabs {
            transition: all 0.3s ease;
        }

        .product-main-image {
            transition: transform 0.5s ease, opacity 0.5s ease;
        }

        .image-dragging {
            opacity: 0.9;
            transform: scale(0.95);
        }

        .swipe-indicator {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            color: rgba(255, 255, 255, 0.7);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            z-index: 10;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .swipe-indicator.left {
            left: 15px;
        }

        .swipe-indicator.right {
            right: 15px;
        }

        .swipe-indicator.visible {
            opacity: 1;
        }

        #sticky-tabs {
            display: none;
            /* Mantém escondido inicialmente */
            position: sticky;
            top: 57px;
            z-index: 99;
            background: white;
            border-bottom: 1px solid #f0f0f0;
        }

        #sticky-tabs.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .star-icon {
            width: 14px;
            height: 14px;
            display: inline-block;
            /* Alterado de block para inline-block */
            margin-right: -2px;
            /* Margem negativa para sobrepor */
        }

        .reviews-rating .star-icon {
            width: 16px;
            height: 16px;
        }

        .stars {
            display: flex;
            gap: 0px;
            /* Sem espaçamento entre as estrelas */
        }

        .divisoria-avaliacoes {
            border-top: 1px solid #f0f0f0;
            margin-top: 16px;
            padding-top: 16px;
            margin-left: -16px;
            /* Compensa o padding do container pai */
            margin-right: -16px;
            /* Compensa o padding do container pai */
            padding-left: 16px;
            /* Mantém o conteúdo alinhado */
            padding-right: 16px;
            /* Mantém o conteúdo alinhado */
        }

        /* 🔼 FIM DO NOVO CSS 🔼 */