.hero-block {
    position: relative;
    width: 100%;
    padding: 2rem;
    overflow: hidden;
    background-color: #11195a;
    color: #ffffff;
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../../assets/images/hexagon.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: 0.5;
        z-index: 0;
    }
}

.hero-container {
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 2rem;
    width: 100%;
    max-width: 1380px !important;
    margin: 0 auto;
    padding: 0 50px;
    border-radius: 2rem;
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #05092e;
        opacity: 0.8;
        z-index: 0;
    }
}

.hero-content {
    flex: 1;
    max-width: 680px;
    align-self: flex-start;
    padding: 50px 0;
    z-index: 1;
}

.hero-overline {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ast-global-color-1);
    margin-bottom: 1rem;
    font-weight: 600;
}

h1.hero-title {
    color: #ffffff;
    font-size: 2.75rem;
    line-height: 1.125;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(90deg, var(--ast-global-color-1) 0%, #F26A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--ast-global-color-4);
    margin-bottom: 2rem;
}

/* Section média */
.hero-media {
    flex: 1;
    align-self: flex-end;
    position: relative;
}
.hero-image {
    display: flex;
    align-items: end;
    flex-direction: column;
    margin-top: 2rem;
}
.hero-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-height: 500px;
    filter: brightness(0.9);
}

.hero-html {
    width: 100%;
}

/* Animations */
.animate-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-media {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.is-visible .animate-content {
    opacity: 1;
    transform: translateY(0);
}

.is-visible .animate-media {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        max-width: 100%;
    }
    .hero-media {
        display: none;
    }
}

@media (max-width: 1023px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content .wp-block-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1.hero-title {
        font-size: 2rem;
    }

    .hero-block {
        padding: 0;
    }

    .hero-container {
        padding: 0 1.5rem;
        border-radius: 0;
    }

    .hero-container .wp-block-buttons {
        gap: 1rem;
    }


    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 500px) {
    .hero-container .wp-block-buttons .wp-block-button {
        width: 100%;
    }
}