/* Tipografia */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto:wght@400;500&display=swap');

/* Animações */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Estilos específicos da seção */
.consultoria-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, #21d3d6 30%, transparent 70%); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 100px; 
}

.consultoria-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2; 
}

.consultoria-wave svg {
    width: 100%;
    height: auto;
}

.consultoria-content {
    position: relative;
    z-index: 1; 
    padding-bottom: 100px; 
}

/* Botões */
.consultoria-primary-btn {
    background: white; 
    color: #F57C00;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); 
    animation: glow 2s infinite; /* Animação glow */
}

.consultoria-secondary-btn {
    display: none; 
}

@keyframes glow {
    0% { box-shadow: 0 0 5px #F57C00; }
    50% { box-shadow: 0 0 20px #F57C00; }
    100% { box-shadow: 0 0 5px #F57C00; }
}