/* Static Hero Section Styles */
.static-hero-section {
    background-color: #000;
    padding-top: 8rem;
    padding-bottom: 3.5rem;
    color: #fff;
    text-align: center;
    overflow: hidden;
    /* Prevent horizontal scroll from large image */
}

.static-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Image */
.static-hero-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    /* Optional: Add a subtle fade-in or drop shadow if desired, but keeping it clean for now */
}

/* Text Content */
.hero-text-bottom {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text-bottom h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text-bottom p {
    color: #ccc;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Typography Colors */
.highlight-text {
    color: #FF6B6B;
    /* Color from reference */
}

/* Mobile Responsiveness */
@media screen and (max-width: 767px) {
    .static-hero-section {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }

    .static-hero-content {
        gap: 2rem;
    }

    .static-hero-img {
        width: 140%;
        max-width: none;
        margin-left: -20%;
    }




    .hero-text-bottom h2 {
        font-size: 1.75rem;
    }

    .hero-text-bottom p {
        font-size: 1rem;
    }
}

/* Download Offline Section Styles */
.download-offline-section {
    background-color: #000;
    padding-top: 3.5rem;
    padding-bottom: 8rem;
    color: #fff;
    overflow: hidden;
}

.download-offline-content {
    display: flex;
    flex-direction: row-reverse; /* Alternating layout: image on the left, text on the right */
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.download-offline-text-wrapper {
    flex: 1.1;
    text-align: left;
}

.download-offline-text-wrapper h2 {
    margin-bottom: 1.5rem;
}

.download-offline-text-wrapper p {
    color: #ccc;
    font-size: 1.125rem; /* Ajustado para coincidir com a seção de cima */
    line-height: 1.6;
}

.download-offline-image-wrapper {
    flex: 0.9;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-offline-image-container {
    position: relative;
    display: inline-block;
}

.download-offline-img {
    width: 100%;
    max-width: 520px; /* Increased size on desktop */
    height: auto;
    display: block;
    z-index: 2;
}

/* Download Offline Status Card */
.download-offline-status-card {
    position: absolute;
    bottom: 2.5rem; /* Adjusted for larger screen size */
    left: 50%;
    transform: translateX(-50%);
    width: 72%; /* Increased width */
    max-width: 340px; /* Increased max-width */
    background-color: #000;
    border: 1.5px solid #555; /* Gray border to match the reference image */
    border-radius: 0.75rem;
    padding: 0.6rem 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
    z-index: 3;
}

.download-offline-status-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-boxshot {
    height: 4rem; /* Increased size */
    width: auto;
    border-radius: 0.25rem;
    display: block;
}

.status-text-container {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.status-title {
    color: #fff;
    font-size: 1rem; /* Slightly larger */
    font-weight: 600;
}

.status-subtitle {
    color: #0071eb; /* Premium downloading blue */
    font-size: 0.85rem; /* Slightly larger */
    font-weight: 500;
}

.status-download-gif {
    width: 2.25rem; /* Slightly larger */
    height: 2.25rem;
    display: block;
}



/* Mobile Responsiveness */
@media screen and (max-width: 991px) {
    .download-offline-content {
        gap: 3rem;
    }
}

@media screen and (max-width: 767px) {
    .download-offline-section {
        padding-top: 2rem;
        padding-bottom: 4rem;
    }

    .download-offline-content {
        flex-direction: column-reverse; /* Stack image above text on mobile */
        gap: 3.5rem;
        text-align: center;
    }

    .download-offline-text-wrapper {
        text-align: center;
    }

    .download-offline-text-wrapper p {
        font-size: 1rem; /* Ajustado para coincidir com a seção de cima */
    }

    .download-offline-img {
        max-width: 320px; /* Increased size on mobile from 260px */
    }
    
    .download-offline-status-card {
        bottom: 1.5rem;
        width: 82%; /* Increased width on mobile */
        max-width: 260px; /* Increased max-width on mobile */
        padding: 0.4rem 0.6rem;
    }
    
    .status-boxshot {
        height: 2.5rem;
    }
    
    .status-title {
        font-size: 0.78rem;
    }
    
    .status-subtitle {
        font-size: 0.68rem;
    }
    
    .status-download-gif {
        width: 1.5rem;
        height: 1.5rem;
    }
}