.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    overflow: visible;
    min-height: 100vh;
}

.hero-container {
    display: flex;
    min-height: 100vh;
    margin:0;
}

.hero-left {
    background:
        linear-gradient(to bottom,
            rgba(0, 77, 77, 0.3) 0%,
            rgba(0, 102, 102, 0.5) 30%,
            rgba(0, 64, 64, 0.9) 100%),
        url("../assets/hero-bg.png");
    background-size: cover;
    background-position: right center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 55%;
    overflow: visible;
}

.hero-logo {
    max-width: 35%;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(242, 240, 255);
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    margin-bottom: 3rem;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-family: var(--font-bold);
    font-size: clamp(1.8rem, 3vw, 4.7rem);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.1;
}

.hero-offer {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--color-light);
    line-height: 1.3;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    font-family: var(--font-bold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-light);
    line-height: 1.7;
}

.hero-description {
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 2.5vw, 1.125rem);
    opacity: 0.9;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .hero-left {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        padding: 0;
        min-height: auto;
        overflow: visible;
    }

    .hero-container {
        flex-direction: column;
        max-width: 100%;
        padding: 0;
        margin-right: 0;
        min-height: auto;
    }
    
    .hero-left {
        flex: none;
        min-height: auto;
        width: 100%;
        padding: 2rem 1rem;
        overflow: visible;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-right {
        flex: none;
        width: 100%;
        min-height: auto;
        padding: 1rem 1rem 3rem 1rem;
    }
    
    .hero-logo {
        max-width: 25%;
        margin-bottom: 1rem;
    }
    
    .hero-content {
        padding: 2rem;
        text-align: justify;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .hero-left {
        min-height: auto;
        padding: 1.5rem 1rem;
    }
    
    .hero-content {
        padding: 2rem;
        gap: 0.75rem;
        margin-bottom: 0;
        width: 100%;
    }
    
    .hero-benefits {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    .hero-logo {
        max-width: 30%;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1rem;
    }
    
    .hero-offer {
        margin-bottom: 1rem;
    }
}

@media (max-width: 320px) {
    .hero-left {
        min-height: auto;
        padding: 1rem 0.75rem;
    }
    
    .hero-content {
        padding: 0;
        gap: 0.5rem;
        margin-bottom: 0;
        width: 100%;
    }
    
    .hero-logo {
        max-width: 35%;
        margin-bottom: 0.75rem;
    }
    
    .hero-benefits {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-title {
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: 0.75rem;
    }
    
    .hero-offer {
        margin-bottom: 0.75rem;
    }
}