 .main-hero-section {
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding: 70px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    background-image:
        radial-gradient(circle at 20% 80%, #f39c12 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #e67e22 0%, transparent 50%);
}

/* Efeitos de linhas decorativas */
.hero-background-effects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255,255,255,0.02) 50%, transparent 51%);
    background-size: 40px 40px;
}
.hero-content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.hero-text-content {
    animation: slideInLeft 1s ease-out;
}
.main-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
}
.hero-description-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #cccccc;
    max-width: 100%;
}
.primary-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}
.primary-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    background: linear-gradient(45deg, #e67e22, #d35400);
}
.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}
.client-placeholder-image {
    width: 100%;
    max-width: 500px;
    height: 700px; 
    background: linear-gradient(135deg, #e5e5e5, #b8b8b8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666666;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.client-placeholder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 12px;
}
/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Responsividade */
@media (max-width: 1024px) {
    .hero-content-container {
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .main-hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-description-text {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
    }
}
@media (max-width: 768px) {
    .main-hero-section {
        margin-top: 2%;
        padding: 1rem;
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 7rem;
    }
    .hero-content-container {
        margin: 0 0;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero-text-content {
        padding-right: 0;
        order: 1;
    }
    .hero-image-container {
        order: 2;
    }
    .main-hero-title {
        margin-top: 25px;
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
        text-align: center;
    }
    .hero-description-text {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-bottom: 2rem;
        text-align: center;
    }
    .client-placeholder-image {
        height: 500px;
        max-width: 400px;
    }
    .primary-cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .main-hero-section {
        padding: 0.5rem;
        padding-bottom: 7rem;
    }
    .hero-content-container {
        gap: 1.5rem;
    }
    .main-hero-title {
        margin-top: 50px;
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.3;
    }
    .hero-description-text {
        font-size: clamp(0.85rem, 4vw, 0.95rem);
        line-height: 1.5;
    }
    .client-placeholder-image {
        height: 490px;
        max-width: 90%;
    }
    .primary-cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
}
@media (max-width: 320px) {
    .main-hero-title {
        font-size: 1.4rem;
    }
    .hero-description-text {
        font-size: 0.8rem;
    }
    .client-placeholder-image {
        height: 180px;
    }
}