/* Estilos para a seção topo */
.topo {
    background-color: var(--cor-fundo);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.container-topo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.texto-esquerdo {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

.categoria {
    display: inline-block;
    background: var(--gradiente-primario);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--borda-arredondada-pequena);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: var(--sombra-padrao);
}

.texto-esquerdo h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--cinza-900);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.destaque {
    color: var(--cor-destaque);
    position: relative;
    display: inline-block;
}

.destaque::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 102, 255, 0.3);
    z-index: -1;
    border-radius: 4px;
    transition: var(--transicao-rapida);
}

.texto-esquerdo p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--cinza-700);
    margin-bottom: 2rem;
}

.botoes {
    display: flex;
    gap: 1rem;
}

.botao {
    background: var(--gradiente-primario);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: var(--borda-arredondada-pequena);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transicao-rapida);
    box-shadow: var(--sombra-padrao);
    position: relative;
    overflow: hidden;
}

.botao:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.botao::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transicao-media);
}

.botao:hover::before {
    left: 100%;
}

.imagem-direita {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out;
}

.imagem-principal {
    max-width: 100%;
    height: auto;
    border-radius: var(--borda-arredondada);
    box-shadow: var(--sombra-padrao);
    transition: var(--transicao-media);
}

.imagem-principal:hover {
    transform: scale(1.03);
}

/* Efeitos de fundo decorativos */
.topo::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--cor-secundaria);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}

.topo::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--cor-primaria);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 1;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .container-topo {
        flex-direction: column;
        text-align: center;
    }
    
    .texto-esquerdo {
        max-width: 100%;
    }
    
    .botoes {
        justify-content: center;
    }
    
    .imagem-direita {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .texto-esquerdo h1 {
        font-size: 2rem;
    }
    
    .texto-esquerdo p {
        font-size: 1rem;
    }
}