
.hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.diagonal-divider {
    width: 53%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(229, 57, 53, 0.6) 50%, rgba(229, 57, 52, 0.6) 100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.content-container {
    position: relative;
    max-width: 60%;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 1000;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.8rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    max-width: 80%;
}

.hero-truck {
    bottom: 15%;
    right: 7%;
    height: auto;
    width: 40%;
    max-width: 600px;
    z-index: 20;
}

.proyectos-btn {
    position: relative;
    display: inline-block;
    color: white;
    padding: 8px 20px;
    font-weight: bold;
    z-index: 1;
    font-size: 1.1rem;
    text-decoration: none;
}

.proyectos-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e53935;
    transform: skewX(-15deg);
    z-index: -1;
    transition: background-color 0.3s;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .content-container {
        max-width: 90%;
        padding-left: 5%;
    }
    
    .diagonal-divider {
        width: 70%;
    }
}

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