.hero-animada {
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary, #FF7C3B), var(--accent, #FF4776));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
}

.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.bg-shape {
    position: absolute;
    filter: blur(90px);
    opacity: 0.3;
    animation: floatAnimation 15s infinite alternate ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, var(--primary-light, #D5D1FC), var(--primary, #AD6BFC));
    top: -100px;
    left: -100px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, var(--accent, #D5D1FC), #D5D1FC);
    bottom: -200px;
    right: -150px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: 2s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--tertiary, #AD6BFC), var(--quaternary, #B396FC));
    top: 40%;
    left: 20%;
    border-radius: 50% 50% 40% 60% / 40% 50% 50% 60%;
    animation-delay: 4s;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, 20px) rotate(5deg);
    }
    100% {
        transform: translate(-20px, 10px) rotate(-5deg);
    }
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
    padding: 16px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.hero-animada__container {
    max-width: 1142px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-animada__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-animada__content {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-animada__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--hero-primary, #FF7C3B);
}

.hero-animada__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #434A54;
}

.hero-animada__highlight {
    background: linear-gradient(90deg, var(--hero-primary, #FF7C3B), var(--hero-secondary, #FF4776));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
}

.hero-animada__description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 90%;
}

.hero-animada__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-animada__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.hero-animada__btn-primary {
    background-color: var(--hero-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.hero-animada__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.hero-animada__btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--hero-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-animada__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-animada__btn-icon {
    display: inline-flex;
}

.hero-animada__image {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    perspective: 1000px;
}

.hero-animada__image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
    height: 300px;
}

.hero-animada__image-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-animada__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.hero-animada__image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
    height: 400px; /* Defina uma altura fixa para o container */
}

.hero-animada__image-container:hover .hero-animada__img {
    transform: scale(1.05);
}

.hero-animada__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.2)
    );
}

/* Animações de fundo */
.hero-animada__bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}


@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, 20px) rotate(5deg);
    }
    100% {
        transform: translate(-20px, 10px) rotate(-5deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 991px) {
    .hero-animada__grid {
        grid-template-columns: 1fr;
    }
    
    .hero-animada__title {
        font-size: 36px;
    }
    
    .hero-animada__description {
        font-size: 16px;
        max-width: 100%;
    }
    
    .hero-animada__image {
        order: -1;
    }
    
    .hero-animada__image-container {
        margin: 0 auto;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .hero-animada {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-animada__title {
        font-size: 32px;
    }
    
    .hero-animada__btn {
        padding: 10px 20px;
        font-size: 15px;
    }
    
}

@media (max-width: 576px) {
    .hero-animada {
        padding: 80px 0 40px;
    }
    
    .hero-animada__container {
        padding: 0 16px;
    }
    
    .hero-animada__title {
        font-size: 28px;
    }
    
    .hero-animada__description {
        font-size: 15px;
    }
    
    .hero-animada__badge {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .hero-animada__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-animada__btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-animada__image-container {
        transform: none !important;
        max-width: 100%;
    }

}

/* Ajustes para melhor visualização em dispositivos muito pequenos */
@media (max-width: 380px) {
    .hero-animada__title {
        font-size: 24px;
    }
    
    .hero-animada__description {
        font-size: 14px;
    }
}

/* Ajustes para dispositivos em modo paisagem */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-animada {
        min-height: auto;
        padding: 80px 0;
    }
    
    .hero-animada__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .hero-animada__image {
        order: 0;
    }
}