.container-breadcrumb {
    top: 0;
}

.hero-curva {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    z-index: 999;
}

.hero-curva__content {
    position: relative;
    z-index: 2;
    max-width: 1316px;
    padding: 0 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin: 0 auto 30px;
}

.hero-curva__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-curva__overlay {
    position: absolute;
    inset: 0;
}

.hero-curva__shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    max-width: 600px;
}

.hero-curva__shape svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 600px) {
    .hero-curva__shape {
        width: 30%;
    }
}

.hero-curva__shape-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    max-width: 600px;
    z-index: 1;
    clip-path: url(#heroCurvaClip);
    overflow: hidden;
}

.hero-curva__shape-image picture,
.hero-curva__shape-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-curva__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.4rem;
    max-width: 600px;
    width: 50%;
}

.hero-curva__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    max-width: 600px;
    width: 50%;
}

@media (max-width: 600px) {
    .hero-curva {
        height: 350px;
    }

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

@media (max-width: 576px) {
    .hero-curva__content { padding: 0 16px; }
}