/* Hero Section - Estilo baseado no template index3.html */
.hero-section {
    margin-top: 10px;
    padding: 120px 0 60px;
    overflow: hidden;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}


.hero-section .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
    height: 100%;
}

.hero-content {
    order: 1;
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-text {
    max-width: 650px;
    padding-right: 20px;
}

.hero-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-image {
    order: 2;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding-left: 20px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.floating-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

.image-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ecdc4, var(--primary-color));
    border-radius: 50%;
    opacity: 0.8;
    animation: pulse 3s ease-in-out infinite reverse;
}

/* Animações */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* Elementos decorativos adicionais */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    z-index: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        justify-content: center;
        padding-left: 0;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 50px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .image-wrapper {
        max-width: 350px;
    }
    
    .image-decoration {
        width: 80px;
        height: 80px;
        top: -10px;
        right: -10px;
    }
    
    .image-decoration::before {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .image-wrapper {
        max-width: 280px;
    }
}