/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0f0808 0%, #000000 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.timer-banner {
    background: linear-gradient(90deg, #ff3333 0%, #ff1a1a 100%);
    padding: 8px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(255, 51, 51, 0.3);
}

.timer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.timer-icon {
    font-size: 16px;
}

.timer-text {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .timer-content {
        font-size: 12px;
        gap: 6px;
    }
    
    .timer {
        font-size: 14px;
        padding: 3px 10px;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 51, 51, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 51, 51, 0.8);
    }
}

/* Device Selection Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-align: center;
    flex: 1;
}

.modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    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);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.device-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.device-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.device-button:hover::before {
    left: 100%;
}

.android-btn {
    background: linear-gradient(135deg, #3ddc84 0%, #2db55d 100%);
    box-shadow: 0 4px 15px rgba(61, 220, 132, 0.3);
}

.android-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61, 220, 132, 0.4);
}

.iphone-btn {
    background: linear-gradient(135deg, #007aff 0%, #0051d5 100%);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.iphone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
}

.device-button i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 25px 20px;
        margin: 20px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .device-button {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .device-button i {
        font-size: 20px;
    }
}


@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.glow-effect {
    animation: glow 2s infinite;
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Selection Styling */
::selection {
    background: #ff3333;
    color: #ffffff;
}

::-moz-selection {
    background: #ff3333;
    color: #ffffff;
}

/* Focus Styles */
button:focus,
a:focus {
    outline: 2px solid #ff3333;
    outline-offset: 2px;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Section */
.hero {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    position: relative;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 20px;
    font-family: "Poppins", Sans-serif;
    font-size: 38px !important;
}

.hero-subtitle {
    display: block;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.hero-brand {
    display: block;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(45deg, #ff3333, #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    color: #eeeeee;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 1.5;
}

.hero-description strong {
    color: #ff3333;
    font-weight: 700;
}

.video-section {
    margin: 30px auto;
    max-width: 80%;
    justify-content: center;
    align-items: center;
}



.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.6);
}

.play-icon {
    color: white;
    font-size: 20px;
    margin-left: 3px;
}

.video-info {
    text-align: center;
}

.video-label {
    display: block;
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 5px;
}

.video-price {
    display: block;
    color: #ff3333;
    font-weight: 700;
    font-size: 14px;
}

.main-cta {
    display: inline-block;
    position: relative;
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
    z-index: 1;
}

.main-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.5);
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 30px;
    }
    
    .hero-subtitle {
        font-size: 38px !important;
    }
    
    .hero-brand {
        font-size: 38px !important;
    }
    
    .hero-description {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .video-container {
        max-width: 320px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-icon {
        font-size: 16px;
    }
    
    .main-cta {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: #05050571;
    text-align: center;
    border-radius: 30px;
}

.main-backdrop {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px 20px;
    margin: 40px auto;
    max-width: 1200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.testimonials-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 10;
}

.testimonial-video {
    max-width: 500px;
    margin: 0 auto;
}

.testimonial-video-bg {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px solid #333;
}

.testimonial-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
}

.testimonial-badge {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.testimonial-text {
    display: block;
    color: #cccccc;
    font-size: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-highlight {
    display: block;
    color: #ff3333;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.testimonial-cta {
    display: block;
    color: #00ff00;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-play {
    width: 50px;
    height: 50px;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 40px 0;
    }
    
    .main-backdrop {
        padding: 30px 15px;
        margin: 20px 10px;
        border-radius: 20px;
    }
    
    .testimonials-title {
        font-size: 20px;
    }
    
    .testimonial-video {
        max-width: 350px;
    }
    
    .testimonial-badge {
        padding: 12px;
    }
    
    .testimonial-text {
        font-size: 10px;
    }
    
    .testimonial-highlight {
        font-size: 12px;
    }
    
    .testimonial-cta {
        font-size: 9px;
    }
}

/* Benefits */
.benefits {
    padding: 60px 0;
    background: #00000000;
    text-align: center;
}

.benefits .container {
    background: rgba(10, 1, 1, 0.438);
    border-radius: 15px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-left: 30px;
    margin-right: 30px;
    border: 3px solid #4b0c0c;
    box-shadow: 0 0 20px rgba(75, 12, 12, 0.5), inset 0 0 20px rgba(75, 12, 12, 0.1);
    animation: borderPulse 2s ease-in-out infinite alternate;
}

@keyframes borderPulse {
    0% {
        border-color: #4b0c0c;
        box-shadow: 0 0 20px rgba(75, 12, 12, 0.5), inset 0 0 20px rgba(75, 12, 12, 0.1);
    }
    100% {
        border-color: #1f0101;
        box-shadow: 0 0 30px rgba(31, 1, 1, 0.8), inset 0 0 30px rgba(31, 1, 1, 0.2);
    }
}

@media (max-width: 768px) {
    .benefits .container {
        border-radius: 12px;
        margin-left: 20px;
        margin-right: 20px;
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .benefits .container {
        border-radius: 10px;
        margin-left: 15px;
        margin-right: 15px;
        padding: 25px 12px;
    }
}

.benefits-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 5px 0;
    line-height: 1.3;

    letter-spacing: 0.5px;
    position: relative;
    z-index: 10;
}

.benefits-title .highlight {
    color: #ff3333;
}

.benefits-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 8px;
    margin-top: -90px;
    margin-bottom: -40px;
}

@media (max-width: 768px) {
    .benefits-image {
        max-width: 450px;
        margin: 8px auto;
        margin-top: -90px;
        margin-bottom: -40px;
    }
}

@media (max-width: 480px) {
    .benefits-image {
        max-width: 350px;
        margin: 5px auto;
        margin-top: -40px;
        margin-bottom: -40px;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.benefit-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #333;
    position: relative;
    overflow: hidden;
}

.benefit-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.benefit-item h3 .highlight {
    color: #ff3333;
    font-weight: 700;
}

.benefit-image {
    margin-top: 15px;
}

.game-screenshot {
    background: linear-gradient(135deg, #ff3333 0%, #ff1a1a 100%);
    height: 120px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.game-screenshot::before {
    content: '🎮';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    opacity: 0.7;
}

.game-screenshot.mobile::before {
    content: '📱';
}

@media (max-width: 768px) {
    .benefits {
        padding: 40px 0;
    }
    
    .benefits-title {
        font-size: 20px;
        font-family: poppins, sans-serif;
        font-weight: 600;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .benefit-item h3 {
        font-size: 16px;
    }
    
    .game-screenshot {
        height: 100px;
    }
    
    .game-screenshot::before {
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 800px;
    }
}

/* Pricing */
.pricing {
    padding: 75px 0;
    background: #08080828;
    margin-top: -80px;
    margin-bottom: -80px;
}

.pricing-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 10px;
    border: 2px solid #333;
    position: relative;
    transition: all 0.3s ease;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid #ff3333;
    transform: scale(1.02);
    background: linear-gradient(135deg, #2d1a1a 0%, #1a1a1a 100%);
}

.pricing-card.premium {
    border: 2px solid #00ff00;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff3333, #ff1a1a);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(255, 51, 51, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
}

.plan-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}

.check-icon {
    color: #00ff00;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon.green {
    color: #00ff00;
}

.x-icon {
    color: #666;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span:last-child {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.4;
}

.feature-item.bonus span:last-child {
    color: #cccccc;
}

.feature-item.bonus strong {
    color: #00ff00;
}

.pricing-info {
    text-align: center;
    margin-bottom: 20px;
}



.strike {
    text-decoration: line-through;
    color: #666;
}

.new-price {
    color: #ff3333;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.new-price.green {
    color: #00ff00;
}

.new-price.featured-price {
    color: #ffd700;
}

.buy-button {
    display: block;
    background: linear-gradient(45deg, #ff3333, #ff1a1a);
    color: #ffffff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    position: relative;
}

.buy-button.green {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000000;
}

.buy-button.featured-btn {
    background: linear-gradient(45deg, #ffd700, #ffcc00);
    color: #000000;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.security-badges {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
}

.badge-icon {
    font-size: 16px;
}

.badge-item span:last-child {
    color: #999;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .pricing {
        padding: 55px 0;
    }
    
    .pricing-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .plan-title {
        font-size: 16px;
    }
    
    .feature-item span:last-child {
        font-size: 12px;
    }
    
    .new-price {
        font-size: 28px;
    }
    
    .buy-button {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .badge-item span:last-child {
        font-size: 8px;
    }
}

@media (min-width: 768px) {
    .pricing .container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        align-items: start;
    }
    
    .pricing-card {
        margin-bottom: 0;
    }
}



/* Guarantee */
.guarantee {
    padding: 75px 0;
    background: linear-gradient(180deg, #000000 0%, #2d2416 50%, #000000 100%);
    text-align: center;
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.guarantee-badge {
    background: linear-gradient(45deg, #ffd700, #ffcc00);
    color: #000000;
    padding: 15px 25px;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.guarantee-days {
    display: block;
    font-size: 18px;
    line-height: 1;
}

.guarantee-text {
    display: block;
    font-size: 14px;
    opacity: 0.8;
}

.guarantee-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .guarantee {
        padding: 55px 0;
    }
    
    .guarantee-badge {
        padding: 12px 20px;
    }
    
    .guarantee-days {
        font-size: 16px;
    }
    
    .guarantee-text {
        font-size: 12px;
    }
    
    .guarantee-title {
        font-size: 16px;
        padding: 0 10px;
    }
}

/* How to Configure Section */
.how-to {
    padding: 75px 0;
    background: #000000;
    text-align: center;
}

.how-to-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.how-to-title .highlight {
    color: #ff3333;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    background: linear-gradient(135deg, #d62525 0%, #941818 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid transparent;
    background-clip: padding-box;
    text-align: center;
    position: relative;
    margin: 20px 0;
    animation: rgbBorder 2s linear infinite;
}

.step::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0000, #000000, #ff0000, #000000);
    background-size: 400% 400%;
    border-radius: 15px;
    z-index: -1;
    animation: rgbBorderAnimation 2s linear infinite;
}

@keyframes rgbBorderAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.step-number {
    background: linear-gradient(45deg, #ff3333, #ff1a1a);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
}

.step h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
}

.step p {
    color: #ffffff;
    line-height: 1.5;
    font-size: 14px;
}

@media (max-width: 768px) {
    .how-to {
        padding: 55px 0;
    }
    
    .how-to-title {
        font-size: 20px;
        padding: 0 10px;
    }
    
    .step {
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step h3 {
        font-size: 14px;
    }
    
    .step p {
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
}

/* FAQ Section */
.faq {
    padding: 75px 0;
    background: #111111;
}

.faq-title {
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: #000000;
    margin-bottom: 15px;
    border-radius: 15px;
    border: 2px solid #330000;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #660000;
}

.faq-question {
    width: 100%;
    padding: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: #ffffff;
    line-height: 1.4;
    background: transparent;
    border: none;
    text-align: left;
}

.faq-question:hover {
    background: rgba(102, 0, 0, 0.2);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    line-height: 1.6;
    color: #cccccc;
    font-size: 14px;
    margin-top: 20px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-toggle {
    color: #ff3333;
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 55px 0;
    }
    
    .faq-title {
        font-size: 20px;
        padding: 0 10px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 14px;
        flex-wrap: wrap;
        word-break: break-word;
    }
    
    .faq-answer {
        padding: 0 15px 15px;
        font-size: 12px;
    }
    
    .faq-toggle {
        font-size: 16px;
        margin-left: 10px;
    }
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 55px 0;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

.footer a {
    color: #ff3333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ff6666;
    text-decoration: underline;
}

.footer-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .footer {
        padding: 45px 0;
    }
    
    .footer p {
        font-size: 12px;
        padding: 0 10px;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .footer-link {
        font-size: 10px;
    }
    
    .copyright {
        font-size: 10px;
        padding: 0 10px;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-brand {
        font-size: 38px !important;
    }
    
    .hero-title {
        font-size: 38px !important;
    }
    
    .pricing .container {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-brand {
        font-size: 38px !important;
    }
    
    .hero-title {
        font-size: 38px !important;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
        display: block;
        background: linear-gradient(45deg, #00ff00, #00cc00);
        color: #ffffff;
        text-decoration: none;
        border-radius: 25px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 20px auto;
        box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
        text-align: center;
        width: auto;
        max-width: 300px;
        word-wrap: break-word;
    }
    
    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 255, 0, 0.5);
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .plan-title {
        font-size: 24px;
    }
}
/* Estilos gerais */
#botao-container {
    text-align: center;
    margin-top: 20px;
  }

  /* Efeito pulsante para celular */
  @media (max-width: 767px) {
    .buy-button {
      animation: pulse 1.2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        opacity: 0.7;
      }
      50% {
        transform: scale(1.05);
        opacity: 1;
      }
      100% {
        transform: scale(1);
        opacity: 0.7;
      }
    }
  }

#basik {
    background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
    border: 2px solid #555;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}


.panel-container {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    
}

.panel {
    background: linear-gradient(135deg, #1a0000 0%, #370606 100%);
    border: 2px solid #940000;
    border-radius: 10px;
    padding: 20px 15px;
    box-shadow: 0 0 20px rgb(255, 49, 49, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 40px #621313;
    z-index: 1;
    
}




/* Panel Header Styles */
.panel-header {
    text-align: center;
    margin-bottom: 20px;
    
}

.panel-title {
    font-family: 'Anton', sans-serif;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 0, 0, 0.8);
    margin-bottom: 0;
    transform: skewX(-5deg);
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.panel-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin-top: -5px;
}

/* Features List Styles */
.features-list {
    margin-bottom: 10px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: -7px;
}

.icons-basic {
    color: #b0b0b0;
    font-size: 16px;
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
    position: relative;
    transform: translateY(-5px);
}

.cancel-icon {
    color: #ff0000;
    font-size: 16px;
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
    position: relative;
    transform: translateY(-5px);
}

.feature-text {
    font-size: 15px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 10px;
}

#iconzin {
    position: relative;
    transform: translateY(8px);
}

.feature-text.bonus {
    color: #00ff55;
    font-weight: 600;
}

/* Price Section Styles */
.price-section {
    text-align: center;
    margin-bottom: 20px;
}

.price-text {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
}

.bonus-text {
    font-size: 15px;
    font-weight: normal;
    line-height: 1.3;
        color: #b6b6b6;
}

#riscado {
    color: red; /* Cor do texto 'BÔNUS' em vermelho */
    font-weight: bold; /* Deixar a palavra 'BÔNUS' em negrito */
    text-decoration: line-through;
}

.old-price {
    text-decoration: line-through;
    color: #ff0000;
}

.current-price {
    font-family: 'Oswald', sans-serif;
    font-size: 65px;
    font-weight: 700;
    color: #00ff55;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-top: 5px;
}

#price {
    color: white;
}

/* CTA Buttons */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.buy-button {
    background: linear-gradient(to bottom, #00ff55, #029c35);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1;
    font-size: 20px !important;
    font-weight: 700;
    padding-left: 45px !important;
    padding-right: 45px !important;
    padding-top: 17px !important;
    padding-bottom: 17px !important;
    border: 2px solid #00ff55;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
    align-self: center;
    display: block;
    max-width: 100%;
}

.buy-button:hover {
    background-color: #00dd00;
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.question-button {
    background-color: transparent;
    color: white;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ff3333;
    border-radius: 30px;
    cursor: pointer;
    background-color: rgba(255, 0, 0, 0.2);
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.question-button:hover {
    background-color: rgba(255, 0, 0, 0.3);
}

/* Footer Styles */
.footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#img-compra-seg {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.trust-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    color: #aaa;
}

.trust-icon i {
    font-size: 15px;
    margin-bottom: 4px;
}

/* Responsive Design */
@media (max-width: 480px) {
    .panel-title {
        font-size: 34px;
    }
    
    .panel-subtitle {
        font-size: 40px;
    }
    
    .feature-text {
        font-size: 16px;
    }
    
    .current-price {
        font-size: 75px;
    }
    
    .buy-button {
        font-size: 16px;
        padding: 12px;
    }
    
    .trust-icons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .trust-icon {
        font-size: 10px;
    }
}


/* Estilos gerais */
#botao-container {
  text-align: center;
  margin-top: 20px;
}

/* Efeito pulsante para celular */
@media (max-width: 767px) {
  .buy-button {
    animation: pulse 1.2s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.7;
    }
    50% {
      transform: scale(1.05);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 0.7;
    }
  }
}


.panel-container {
width: 100%;
max-width: 300px;
padding: 15px;

}

.plan-tag {
top: 2530px;
left: 50%;
transform: translateX(-50%);
background-color: #00ff55;
color: black;
font-family: 'Poppins', sans-serif;
font-weight: 700;
padding: 4px 24px;
border-radius: 9999px;
font-size: 0.750rem;
z-index: 2;
position: absolute;
max-width: 100% !important;
white-space: nowrap;
}

.panel {
background: linear-gradient(135deg, #1a0000 0%, #370606 100%);
border: 2px solid #940000;
border-radius: 10px;
padding: 20px 15px;
box-shadow: 0 0 20px rgb(255, 49, 49, 0.2);
position: relative;
overflow: hidden;
box-shadow: 0px 0px 40px #621313;
z-index: 1;
width: 100%;
scale: 0.90;
}

.panel-header {
text-align: center;
margin-bottom: 20px;

}

.panel-title {

font-family: 'Anton', sans-serif;
font-size: 38px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
color: #ccc;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 0, 0, 0.8);
margin-bottom: 0;
transform: skewX(-5deg);
background: linear-gradient(to bottom, #fff, #aaa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.panel-subtitle {
font-family: 'Bebas Neue', sans-serif;
font-size: 50px;
color: #ffffff;
letter-spacing: 1px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
margin-top: -5px;
white-space: nowrap;
margin-top: 10px; 
}

/* Features List Styles */
.features-list {
margin-bottom: 10px;
}

.feature-item {
display: flex;
align-items: flex-start;
margin-bottom: -7px;
}

.check-icon {
color: #ff0000;
font-size: 16px;
margin-right: 10px;
margin-top: 3px;
flex-shrink: 0;
position: relative;
transform: translateY(-5px);
}



#iconzin {
position: relative;
transform: translateY(8px);
}

.feature-text.bonus {
color: #00ff55;
font-weight: 600;
}

/* Price Section Styles */
.price-section {
text-align: center;
margin-bottom: 20px;
}

.price-text {
font-size: 20px;
color: #fff;
font-weight: 500;
margin-bottom: 0;
}

.old-price {
text-decoration: line-through;
color: #ff0000;
}

.current-price {
font-family: 'Oswald', sans-serif;
font-size: 65px;
font-weight: 700;
color: #00ff55;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
line-height: 1;
margin-top: 5px;
}

.cta-section {
display: flex;
flex-direction: column;
gap: 15px;
margin-bottom: 20px;
}

.buy-button {
background: linear-gradient(to bottom, #00ff55, #029c35);
color: #ffffff;
font-family: 'Poppins', sans-serif;
font-weight: 500;
line-height: 1;
font-size: 20px !important;
font-weight: 700;
padding-left: 45px !important;
padding-right: 45px !important;
padding-top: 17px !important;
padding-bottom: 17px !important;
border: 2px solid #00ff55;
border-radius: 15px;
cursor: pointer;
transition: all 0.2s ease;
text-align: center;
text-decoration: none;
align-self: center;
display: block;
max-width: 100%;
}

.buy-button:hover {
background-color: #00dd00;
transform: scale(1.02);
box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.question-button {
background-color: transparent;
color: white;
font-size: 16px;
padding: 10px;
border: 1px solid #ff3333;
border-radius: 30px;
cursor: pointer;
background-color: rgba(255, 0, 0, 0.2);
transition: all 0.2s ease;
text-align: center;
text-decoration: none;
display: block;
}

.question-button:hover {
background-color: rgba(255, 0, 0, 0.3);
}

.footer {
margin-top: 15px;
padding-top: 15px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#img-compra-seg {
max-width: 100%;
height: auto;
display: block;
margin-left: auto;
margin-right: auto;
}

.trust-icons {
display: flex;
justify-content: center;
gap: 15px;
}

.trust-icon {
display: flex;
flex-direction: column;
align-items: center;
font-size: 11px;
color: #aaa;
}

.trust-icon i {
font-size: 15px;
margin-bottom: 4px;
}

@media (max-width: 480px) {
.panel-title {
font-size: 34px;
}

.panel-subtitle {
font-size: 40px;
}

.feature-text {
font-size: 16px;
}

.current-price {
font-size: 75px;
}

.buy-button {
font-size: 16px;
padding: 12px;
}

.trust-icons {
flex-direction: row;
flex-wrap: wrap;
}

.trust-icon {
font-size: 10px;
}
}
