.hero-block-container {
    position: relative;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    width: 100%;
    padding: 20px 40px;
    padding-bottom: 480px;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    animation: fadeIn 1s ease-out;
    box-sizing: border-box;
    margin-bottom: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-block-container::before,
.hero-block-container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.6;
    z-index: 0;
}

.hero-block-container::before {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #a7e1ff, #d7f7ff);
    top: -100px;
    left: -100px;
    transform: rotate(-30deg);
}

.hero-block-container::after {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #e3caff, #fbe6ff);
    bottom: -150px;
    right: -150px;
    transform: rotate(20deg);
}

.hero-block-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    margin-bottom: 50px;
    width: 100%;
    box-sizing: border-box;
    padding: 40px 240px;
}

.hero-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 24px;
    width: 100%;
}

.hero-block-content h1 {
    font-size: 3.0em;
    font-weight: var(--weight-bold);
    color: var(--title-color);
    line-height: 1.3;
    margin: 0;
    max-width: 90%;
}

.hero-block-content .description {
    font-size: 1.1em;
    color: #555555;
    line-height: 1.6;
    margin: 0;
    max-width: 85%;
}

.cta-button {
    background: linear-gradient(45deg, #6a0dad, #9c27b0);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(106, 13, 173, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: linear-gradient(45deg, #7b1fa2, #af41c9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 13, 173, 0.4);
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.95em;
    color: #777777;
    margin: 0;
    font-weight: 400;
    margin-bottom: -80px;
}
.features span {
    white-space: nowrap;
}

.home_featured_app {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90%;
    max-width: 700px;
    box-sizing: border-box;
}

.home_video_modal_box .embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000; 
}

.home_video_modal_box .embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; 
}

.hero-bottom-gradient {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(to top, #e0f2f7, rgba(255,255,255,0));
    z-index: 6;
    pointer-events: none;
}

.home_next_section {
    background-color: #f2f2f2;
    position: relative;
    z-index: 5;
    width: 100%;
    box-sizing: border-box;
    margin-top: -430px;
    padding: 750px 40px 80px 40px;
}

.home_next_section .container.content {
    text-align: center;
}

.home_next_section_title {
    text-align: center;
    font-size: 2em;
    color: #333;
    margin-bottom: 40px;
}

/* Media Queries para Responsividade */
@media (max-width: 48em) {
    .hero-block-container {
        padding: 40px 25px;
        min-height: auto;
        padding-bottom: 300px;
    }
    .hero-block-content {
        max-width: 100%;
        padding: 0;
        margin-bottom: 50px;
        gap: 20px;
    }
    .hero-text-group {
        padding: 20px 0;
    }
    .hero-block-content h1 {
        font-size: 2em;
        max-width: 100%;
    }
    .hero-block-content .description {
        font-size: 1em;
        max-width: 100%;
    }
    .cta-button {
        padding: 14px 28px;
        font-size: 1em;
    }
    .home_featured_app {
        width: 100%;
        max-width: 500px;
        bottom: 50px;
        padding: 0 40px;
    }

    .hero-bottom-gradient {
        height: 300px;
    }
    .home_next_section {
        max-width: 100%;
        margin-top: -250px;
        padding: 530px 25px 50px 25px;
    }
    .hero-block-container::before {
        width: 250px;
        height: 250px;
        top: -80px;
        left: -80px;
    }
    .hero-block-container::after {
        width: 300px;
        height: 300px;
        bottom: -100px;
        right: -100px;
    }
}

@media (max-width: 30em) {
    .hero-block-container {
        padding: 30px 20px;
        padding-bottom: 250px;
    }
    .hero-block-content {
        margin-bottom: 40px;
    }
    .hero-text-group {
        padding: 15px 0;
    }
    .hero-block-content h1 {
        font-size: 1.6em;
    }
    .hero-block-content .description {
        font-size: 0.9em;
    }
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9em;
    }
    .home_featured_app {
        width: 100%;
        max-width: 350px;
        bottom: 40px;
    }
    .hero-bottom-gradient {
        height: 250px;
    }
    .home_next_section {
        margin-top: -190px;
        padding: 400px 20px 40px 20px;
    }
}

/* NOVO: Media Query para Dispositivos Móveis em Modo Paisagem (Horizontal) */
@media (max-width: 52em) and (orientation: landscape) {
    .hero-block-container {
        padding: 20px 15px;
        padding-bottom: 200px;
        min-height: auto;
    }

    .hero-block-content {
        padding: 0 10px;
        margin-bottom: 25px;
        gap: 15px;
    }

    .hero-block-content h1 {
        font-size: 2.3em;
        line-height: 1.2;
        max-width: 98%;
    }

    .hero-block-content .description {
        font-size: 0.85em;
        max-width: 98%;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .features {
        font-size: 0.8em;
        gap: 8px;
        margin-bottom: 20px;
    }

    .home_featured_app {
        margin-top: 20px;
        bottom: 20px;
        width: 80%;
        max-width: 400px;
    }

    .hero-bottom-gradient {
        height: 180px;
    }

    .home_next_section {
        margin-top: -170px;
        padding: 380px 15px 40px 15px;
    }

    .hero-block-container::before {
        width: 180px;
        height: 180px;
        top: -60px;
        left: -60px;
    }
    .hero-block-container::after {
        width: 220px;
        height: 220px;
        bottom: -80px;
        right: -80px;
    }
}

/* Opcional: Para telas ainda mais curtas (ex: alguns celulares pequenos em paisagem) */
@media (max-height: 22em) and (orientation: landscape) {
    .hero-block-container {
        padding: 15px 10px;
        padding-bottom: 140px;
    }
    .hero-block-content {
        margin-bottom: 15px;
        gap: 10px;
    }
    .hero-block-content h1 {
        font-size: 1.1em;
        line-height: 1.1;
    }
    .hero-block-content .description {
        font-size: 0.75em;
    }
    .cta-button {
        padding: 8px 16px;
        font-size: 0.8em;
    }
    .features {
        font-size: 0.7em;
        gap: 5px;
    }
    .home_featured_app {
        bottom: 15px;
        max-width: 300px;
    }
    .hero-bottom-gradient {
        height: 120px;
    }
    .home_next_section {
        margin-top: -120px;
        padding-top: 300px;
    }
}