/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #1a1a2e;
    --accent-color: #16213e;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gradient-primary: linear-gradient(135deg, #ff6b35, #f7931e);
    --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--gradient-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: static;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    background: var(--gradient-dark);
    overflow: hidden;
    z-index: 1;
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: static;
    z-index: 1;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.viewers-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #00ff88;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-buttons {
    margin-top: 2rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modern Phone Mockup */
.modern-phone {
    position: relative;
    width: 350px;
    height: 700px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.modern-phone:hover {
    transform: translateY(-10px) scale(1.02);
}

.phone-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 35px;
    padding: 8px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.fullscreen-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fullscreen-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}


.phone-shadow {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 25px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3), transparent);
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}


/* Features Section */
.features {
    position: static;
    padding: 60px 0;
    background: #1a1a2e;
    z-index: 1;
    margin-top: 40px;
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.feature-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Games Section */
.games {
    padding: 80px 0;
    background: var(--accent-color);
}

.games-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.consoles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 4rem;
}

.console-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.console-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.console-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.console-item span {
    font-weight: 500;
    color: var(--text-light);
}

.classic-games {
    margin-bottom: 3rem;
}

.classic-games h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.game-item {
    text-align: center;
    transition: all 0.3s ease;
}

.game-item:hover {
    transform: scale(1.05);
}

.game-image {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    margin-bottom: 1rem;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.red-dead {
    background: linear-gradient(45deg, #8B0000, #FF4500);
}

.god-of-war {
    background: linear-gradient(45deg, #2C1810, #8B4513);
}

.mario {
    background: linear-gradient(45deg, #FF0000, #FFD700);
}

.mortal-kombat {
    background: linear-gradient(45deg, #000000, #FF0000);
}

.game-item span {
    font-weight: 500;
    color: var(--text-light);
}

.classics-list h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.classics-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.classic-tag {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.classic-tag:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Carrossel Styles */
.games-carousel,
.depoimentos-carousel {
    position: relative;
    max-width: 100%;
    margin: 2rem auto;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: visible;
    border-radius: 15px;
    padding: 0 80px; /* Espaço para os botões */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
}

.carousel-slide {
    flex: 0 0 auto;
    min-width: 200px;
    text-align: center;
    background: transparent;
    border-radius: 15px;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
}

.carousel-slide:hover {
    transform: translateY(-5px);
}

.carousel-slide img {
    width: auto;
    height: 400px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 0;
    background: transparent;
}

.carousel-slide span {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.carousel-btn:hover {
    background: #e55a2b;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Depoimentos carousel specific */
.depoimentos-carousel .carousel-slide {
    min-width: 100%;
    width: 100%;
}

.depoimentos-carousel .carousel-slide img {
    width: auto;
    height: 500px;
    object-fit: contain;
    background: transparent;
    max-width: 100%;
}

/* Requirements Section */
.requirements {
    padding: 80px 0;
    background: var(--secondary-color);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.requirement-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.requirement-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.requirement-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.requirement-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.requirement-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Support Section */
.support {
    padding: 80px 0;
    background: var(--accent-color);
}

.support h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.support-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.support-item {
    display: flex;
    justify-content: center;
}

.chat-mockup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 300px;
    width: 100%;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

.chat-header span {
    font-weight: 500;
    color: var(--text-light);
}

.chat-message {
    background: rgba(255, 107, 53, 0.2);
    padding: 1rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.chat-message p {
    color: var(--text-light);
    margin: 0;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--gradient-dark);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,107,53,0.1)"/></pattern></defs><rect width="100" height="100" fill="url("http://www.daogenxs.com/proxy.php?url=https%3A%2F%2Fwww.exivaai.com.br%2F%2523dots")"/></svg>');
    opacity: 0.5;
}

.pricing-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.countdown-timer h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.time-unit {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    min-width: 120px;
}

.time-unit span {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.time-unit label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.price-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-option {
    text-align: center;
}

.price-option h3 {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.price {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-option p {
    color: #cccccc;
    font-size: 0.9rem;
}

.price-divider {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--secondary-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.1);
}

.faq-question h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--secondary-color);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-copyright {
    color: #888888;
}

.footer-copyright p {
    margin: 0.5rem 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--gradient-dark);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
    animation: slideInUp 0.3s ease;
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: 18px 18px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
}

.close {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--secondary-color);
}

.modal-body {
    padding: 2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Terms and Privacy Content */
.terms-content,
.privacy-content {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 1rem;
}

.terms-content h3,
.privacy-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.terms-content p,
.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #cccccc;
}

.terms-content ul,
.privacy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-content li,
.privacy-content li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

/* Modal Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header {
        display: none;
    }
    
    /* Menu inferior para mobile */
    .mobile-bottom-nav {
        display: block !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
    }
    
    body {
        padding-bottom: 100px; /* Espaço para o menu inferior */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .modern-phone {
        width: 300px;
        height: 600px;
    }
    
    .phone-body {
        padding: 6px;
    }
    
    .carousel-container {
        padding: 0 60px; /* Menos espaço no tablet */
    }
    
    
    .timer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 100px;
    }
    
    .price-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .price-divider {
        font-size: 1.2rem;
    }
    
    .consoles-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .games-showcase {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .classics-tags {
        justify-content: center;
    }
    
    .carousel-slide {
        min-width: 150px;
    }
    
    .carousel-slide img {
        width: auto;
        height: 300px;
        object-fit: contain;
        background: transparent;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .carousel-btn.prev {
        left: 5px;
    }
    
    .carousel-btn.next {
        right: 5px;
    }
    
    .depoimentos-carousel .carousel-slide {
        min-width: 100%;
        width: 100%;
    }
    
    .depoimentos-carousel .carousel-slide img {
        width: auto;
        height: 350px;
        object-fit: contain;
        background: transparent;
        max-width: 100%;
    }
    
    .support-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .carousel-container {
        padding: 0 50px; /* Ainda menos espaço no mobile */
    }
    
    .modal-content {
        margin: 2% auto;
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    
    .modern-phone {
        width: 250px;
        height: 500px;
    }
    
    .phone-body {
        padding: 5px;
    }
    
    .carousel-slide {
        min-width: 120px;
    }
    
    .carousel-slide img {
        width: auto;
        height: 250px;
        object-fit: contain;
        background: transparent;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .carousel-btn.prev {
        left: 5px;
    }
    
    .carousel-btn.next {
        right: 5px;
    }
    
    .depoimentos-carousel .carousel-slide {
        min-width: 100%;
        width: 100%;
    }
    
    .depoimentos-carousel .carousel-slide img {
        width: auto;
        height: 300px;
        object-fit: contain;
        background: transparent;
        max-width: 100%;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    font-size: 28px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}



/* Menu inferior para mobile */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.mobile-bottom-nav .btn-primary {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.mobile-bottom-nav .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Estilos para os CTAs das seções */
.features-cta,
.games-cta {
    text-align: center;
    margin-top: 2rem;
}

.features-cta .btn-primary,
.games-cta .btn-primary {
    display: inline-block;
    text-decoration: none;
}

/* WhatsApp Button - Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 120px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .whatsapp-btn i {
        font-size: 24px;
    }
}

/* ===== NOTIFICAÇÕES DE COMPRA ===== */
.purchase-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    z-index: 10000;
    max-width: 320px;
    min-width: 280px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.purchase-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.purchase-notification.hide {
    transform: translateX(100%);
    opacity: 0;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
}

.notification-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.notification-text strong {
    color: #fff;
    font-weight: 600;
}

.notification-time {
    font-size: 11px;
    opacity: 0.8;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.9);
}

/* Animação de pulso para o ícone */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsivo para notificações */
@media (max-width: 768px) {
    .purchase-notification {
        top: 15px !important;
        right: 15px !important;
        left: 15px !important;
        max-width: none !important;
        min-width: auto !important;
        width: calc(100% - 30px) !important;
        transform: translateY(-100%) !important;
        z-index: 10000 !important;
        position: fixed !important;
        display: block !important;
        visibility: visible !important;
        opacity: 0 !important;
    }
    
    .purchase-notification.show {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .purchase-notification.hide {
        transform: translateY(-100%) !important;
        opacity: 0 !important;
    }
    
    .notification-content {
        padding: 14px 16px;
        gap: 10px;
        display: flex !important;
        align-items: center !important;
    }
    
    .notification-icon {
        font-size: 20px;
        flex-shrink: 0;
    }
    
    .notification-text {
        font-size: 13px;
        flex: 1;
    }
    
    .notification-time {
        font-size: 10px;
    }
}

/* ===== FIM NOTIFICAÇÕES DE COMPRA ===== */
