.hero {
    min-height: 100vh;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 30%,
            rgba(0, 0, 0, 0.9) 100%),
        url("../assets/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    padding: 2rem;
}

.hero-container {
    max-width: 65%;
    width: 100%;
    padding: 1rem 5rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    margin-right: auto;
    position: relative;
    overflow: visible;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    margin-bottom: 3rem;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: var(--font-bold);
    font-size: clamp(2rem, 6vw, 4.7rem);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.presente {
    color: var(--color-primary);
}

.strikethrough {
    text-decoration: line-through;
    text-decoration-color: var(--color-light);
}

.hero-description {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin: 0 2rem;
    opacity: 0.9;
    line-height: 1.4;
    max-width: 500px;
}

@media (max-width: 1024px) {
    .hero-container {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        padding: 1rem;
    }

    .hero-container {
        max-width: 100%;
        padding: 1rem;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }
}