* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.offer-header {
    background: #fff;
    padding: 15px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.offer-timer {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.offer-timer i {
    color: #ff4444;
    font-size: 16px;
}

#timer {
    color: #ff4444;
}

.main-content {
    margin-top: 60px;
    text-align: center;
    padding: 0 20px;
}

.main-content h1 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #130021;
    line-height: 1.2;
}

.video-container {
    margin-top: 30px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
}

.video-container video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-btn i {
    color: white;
    font-size: 16px;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.viewers-count {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #00000079;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.viewers-count i {
    color: #ff4444;
}

#viewerCounter {
    font-weight: bold;
}

.gradient-text {
    background: linear-gradient(to right, #cb00ff, #7a05f1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.offer-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 0;
}

.offer-container {
    background: white;
    border-radius: 9px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0;
}

.offer-container h2 {
    font-size: 1.5rem;
    color: #130021;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.bonus-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.3;
}

.vip-button,
.paypal-button,
.telegram-button {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    margin: 15px 0;
}

.vip-button {
    background: linear-gradient(to bottom, #ff4444 0%, #cc0000 100%);
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    border-radius: 25px;
}

.vip-button:hover {
    background: linear-gradient(to bottom, #ff6666 0%, #ff0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.6);
}

.paypal-button {
    background: linear-gradient(to bottom, #0079c1 0%, #00457c 100%);
    box-shadow: 0 4px 15px rgba(0, 121, 193, 0.4);
    border-radius: 25px;
}

.paypal-button:hover {
    background: linear-gradient(to bottom, #0089d6 0%, #0056a2 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 121, 193, 0.6);
}

.telegram-button {
    background: linear-gradient(to bottom, #0088cc 0%, #006699 100%);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
    border-radius: 9px;
}

.telegram-button:hover {
    background: linear-gradient(to bottom, #0099e6 0%, #0077b3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.payment-method i {
    font-size: 24px;
    color: #666;
}

.payment-method span {
    font-size: 12px;
    color: #666;
}

@media screen and (max-width: 600px) {
    .payment-methods {
        gap: 15px;
    }
    
    .payment-method i {
        font-size: 20px;
    }
    
    .payment-method span {
        font-size: 10px;
    }
}

.footer {
    margin-top: 40px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 -2px 5px #0000001a;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.footer-logo img {
    height: 35px;
    width: auto;
}

.footer-divider {
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
}

.footer-warning {
    color: #db0303;
    font-size: 14px;
}

.warning-text {
    color: #db0303;
    display: block;
}

.copyright {
    color: #333;
    font-size: 12px;
    display: block;
    margin-top: 3px;
}

@media screen and (max-width: 600px) {
    .footer-content {
        padding: 0 10px;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-warning {
        font-size: 12px;
    }
}

/* Manter seleção de texto apenas onde necessário */
input, 
textarea {
    -webkit-user-select: text;
    user-select: text;
}

/* Estilos do Carrossel */
.carousel-container {
    margin: 30px 0;
    padding: 0 20px;
}

.carousel-title {
    font-size: 1.3rem;
    color: #130021;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-track {
    display: flex;
    animation: carousel-scroll 60s linear infinite;
    width: calc(350px * 21); /* 21 imagens × (320px + 30px margin) */
}

.carousel-item {
    flex: 0 0 320px;
    height: 180px;
    margin-right: 30px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-item:hover .play-overlay {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-overlay i {
    color: white;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 50%;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 10.5)); /* Move metade das imagens */
    }
}

/* Pause animation on hover */
.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

/* Responsividade do carrossel */
@media screen and (max-width: 768px) {
    .carousel-container {
        padding: 0 15px;
        margin: 25px 0;
    }
    
    .carousel-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .carousel-track {
        width: calc(280px * 21);
    }
    
    .carousel-item {
        flex: 0 0 250px;
        height: 141px;
        margin-right: 20px;
    }
    
    @keyframes carousel-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-270px * 10.5));
        }
    }
}

@media screen and (max-width: 600px) {
    .carousel-container {
        padding: 0 10px;
    }
    
    .carousel-track {
        width: calc(250px * 21);
    }
    
    .carousel-item {
        flex: 0 0 220px;
        height: 124px;
        margin-right: 20px;
    }
    
    @keyframes carousel-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-240px * 10.5));
        }
    }
}

@media screen and (max-width: 480px) {
    .carousel-container {
        padding: 0 8px;
        margin: 20px 0;
    }
    
    .carousel-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .carousel-track {
        width: calc(200px * 21);
    }
    
    .carousel-item {
        flex: 0 0 180px;
        height: 101px;
        margin-right: 15px;
        border-radius: 6px;
    }
    
    @keyframes carousel-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-195px * 10.5));
        }
    }
}

/* Estilos para o popup */
.popup {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: auto;
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
    animation: popupFade 0.3s ease;
    margin: 0;
    position: relative;
}

.price-highlight {
    color: #0079c1;
    font-weight: bold;
}

@keyframes popupFade {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-popup {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-popup:hover {
    color: black;
}

.popup h2 {
    margin-top: 10px;
    color: #130021;
    font-size: 1.5rem;
}

.popup p {
    margin: 15px 0 25px;
    color: #666;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-btn {
    margin: 0;
}

/* Galeria de Provas Sociais */
.social-proof-gallery {
    margin: 40px 0 30px;
    padding: 0 20px;
}

.gallery-title {
    font-size: 1.3rem;
    color: #130021;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.gallery-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 auto;
    width: 250px;
    height: 444px; /* Proporção de tela de celular 9:16 */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsividade da galeria */
@media screen and (max-width: 768px) {
    .social-proof-gallery {
        padding: 0 15px;
        margin: 35px 0 25px;
    }
    
    .gallery-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .gallery-container {
        gap: 18px;
        padding: 8px 0 18px;
    }
    
    .gallery-item {
        width: 220px;
        height: 391px;
        border-radius: 18px;
    }
}

@media screen and (max-width: 600px) {
    .social-proof-gallery {
        padding: 0 10px;
    }
    
    .gallery-container {
        gap: 15px;
        padding: 10px 0 15px;
    }
    
    .gallery-item {
        width: 200px;
        height: 356px;
        border-radius: 15px;
    }
}

@media screen and (max-width: 480px) {
    .social-proof-gallery {
        padding: 0 8px;
        margin: 30px 0 20px;
    }
    
    .gallery-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .gallery-container {
        gap: 12px;
        padding: 8px 0 12px;
    }
    
    .gallery-item {
        width: 170px;
        height: 302px;
        border-radius: 12px;
        border: 1px solid #e9ecef;
    }
    
    .gallery-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
}

@media screen and (max-width: 360px) {
    .carousel-container {
        padding: 0 5px;
        margin: 15px 0;
    }
    
    .carousel-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .carousel-track {
        width: calc(160px * 21);
    }
    
    .carousel-item {
        flex: 0 0 150px;
        height: 84px;
        margin-right: 12px;
        border-radius: 5px;
    }
    
    @keyframes carousel-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-162px * 10.5));
        }
    }
    
    .social-proof-gallery {
        padding: 0 5px;
        margin: 25px 0 15px;
    }
    
    .gallery-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .gallery-container {
        gap: 10px;
        padding: 6px 0 10px;
    }
    
    .gallery-item {
        width: 150px;
        height: 267px;
        border-radius: 10px;
    }
}
