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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(33, 150, 243, 0.1);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(33, 150, 243, 0.3));
    transition: transform 0.3s ease;
}

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

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2196f3, #64b5f6);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: #64b5f6;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('https://static.wixstatic.com/media/5edd13_dade156cf1e64b7787c8dce5202f9c51~mv2.jpg/v1/fill/w_980,h_649,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/5edd13_dade156cf1e64b7787c8dce5202f9c51~mv2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(33, 150, 243, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(33, 150, 243, 0.5), 0 0 60px rgba(33, 150, 243, 0.3);
    letter-spacing: 0.1em;
    background: linear-gradient(45deg, #ffffff, #64b5f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(33, 150, 243, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: linear-gradient(135deg, #2196f3, #1976d2, #0d47a1);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.6);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.5), transparent);
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.5), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding: 0 1rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(33, 150, 243, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(33, 150, 243, 0.5);
    box-shadow: 0 20px 50px rgba(33, 150, 243, 0.3);
}

.stat-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 15px rgba(33, 150, 243, 0.4));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #2196f3, #64b5f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(33, 150, 243, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Download Section */
.download-section {
    padding: 100px 0;
    background: #000000;
    position: relative;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.5), transparent);
}

.download-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #64b5f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 0 1rem;
}


.download-card-parceria {
    
}

.download-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(33, 150, 243, 0.2);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.download-card:hover::before {
    opacity: 1;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(33, 150, 243, 0.4);
    border-color: rgba(33, 150, 243, 0.5);
}

.download-card-image {
    width: auto;
    height: 150px;
    object-fit: contain;
    margin: 0 auto 1.5rem auto;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(33, 150, 243, 0.3));
    transition: transform 0.4s ease;
    position: relative;
    border-radius: 20px;
    cursor: pointer;
    z-index: 1;
}

.download-card:hover .download-card-image {
    transform: scale(1.1) rotate(5deg);
}

.download-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.download-card p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.download-card-button {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
    position: relative;
    z-index: 1;
}

.download-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.5);
    background: linear-gradient(135deg, #1976d2, #0d47a1);
}

/* Streaming Section */
.streaming-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
}

.streaming-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.5), transparent);
}

.streaming-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.5;
}

.streaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
}

.streaming-card {
    height: 180px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.streaming-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.streaming-card:hover::after {
    opacity: 1;
}

.streaming-card:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.streaming-card.netflix {
    background: #000000;
}

.streaming-card.prime-video {
    background: #0066cc;
}

.streaming-card.disney-plus {
    background: linear-gradient(45deg, #0c2461, #40739e);
}

.streaming-card.globoplay {
    background: linear-gradient(45deg, #ff7f00, #ffb347);
}

.streaming-card.hbo {
    background: linear-gradient(45deg, #6a0dad, #9370db);
}

.streaming-logo {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.streaming-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: brightness(1) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.streaming-card:hover .streaming-logo img {
    transform: scale(1.1);
    filter: brightness(1.2) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}

/* Instructions Section */
.instructions-section {
    padding: 100px 0;
    background: #000000;
    position: relative;
}

.instructions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.5), transparent);
}

.instructions-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #64b5f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instruction-block {
    max-width: 800px;
    margin: 0 auto 5rem auto;
    padding: 0 2rem;
}

.instruction-block:last-child {
    margin-bottom: 0;
}

.instruction-block h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #64b5f6;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.instruction-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #2196f3, #64b5f6);
    border-radius: 2px;
}

.steps-container {
    position: relative;
    padding-left: 60px;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, #2196f3, #1976d2, #0d47a1);
    box-shadow: 0 0 10px rgba(33, 150, 243, 0.5);
}

.step-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 20px;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: -40px;
    top: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.6);
    z-index: 1;
    border: 3px solid #000000;
}

.step-content {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 3px solid rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.04);
    border-left-color: #2196f3;
    transform: translateX(5px);
}

.step-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.step-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 5px rgba(33, 150, 243, 0.3));
}

.step-content p {
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1.05rem;
    color: #e0e0e0;
}

.highlight-code {
    display: inline-block;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(25, 118, 210, 0.3));
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin: 0 4px;
    border: 1px solid rgba(33, 150, 243, 0.4);
    color: #64b5f6;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

/* Footer */
.footer {
    background: #000000;
    text-align: center;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(33, 150, 243, 0.1);
}

.footer p {
    opacity: 0.6;
    font-size: 0.95rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 25px;
    width: 90%;
    max-width: 950px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(33, 150, 243, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.close {
    color: #ffffff;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover {
    color: #64b5f6;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.modal-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.option-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(33, 150, 243, 0.2);
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: rgba(33, 150, 243, 0.5);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.2);
}

.app-image, .device-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    filter: drop-shadow(0 10px 25px rgba(33, 150, 243, 0.3));
}

.option-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #64b5f6;
    font-weight: 700;
}

.option-info p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.download-button {
    display: inline-block;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.4);
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.6);
    background: linear-gradient(135deg, #1976d2, #0d47a1);
}

.playstore-button img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.playstore-button:hover img {
    transform: scale(1.05);
}

.single-option {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.single-option .device-image {
    width: 200px;
    height: 200px;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .hero-image img {
        max-width: 250px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-icon {
        font-size: 3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .download-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .download-card-image {
        width: 120px;
        height: 120px;
    }
    
    .streaming-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .modal-options {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
    }
    
    .streaming-section h2 {
        font-size: 1.5rem;
    }
    
    .download-section h2 {
        font-size: 2rem;
    }
    
    .instructions-section h2 {
        font-size: 2rem;
    }
    
    .instruction-block {
        padding: 0 1rem;
    }
    
    .instruction-block h3 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .steps-container {
        padding-left: 50px;
    }
    
    .steps-container::before {
        left: 15px;
    }
    
    .step-number {
        left: -35px;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .step-content {
        padding: 1.2rem 1.5rem;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image img {
        max-width: 200px;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .app-image, .device-image {
        width: 140px;
        height: 140px;
    }
    
    .single-option .device-image {
        width: 160px;
        height: 160px;
    }
    
    .steps-container {
        padding-left: 40px;
    }
    
    .steps-container::before {
        left: 12px;
    }
    
    .step-number {
        left: -28px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .highlight-code {
        font-size: 1rem;
        padding: 3px 10px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-card, .streaming-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(100, 181, 246, 0.5);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 181, 246, 0.8);
}